Regex pattern help for the string

Hi @T_Y_Raju

Please use the below regex:

Input="CUSTOMER INFO
10234 Jamie Lawson"

Output= System.Text.RegularExpressions.Regex.Match(Input,"(?<=[A-Za-z]+[\s\S]*?)(\d+.*)").Value

Regards