Extract text with regex

@borismh - Please try this…

image

Regex Patter: (?<=.*\r\n\w\s)\d{3}-\d{7} → If this didn’t work…

Update: Try this - (?<=\n\w\s)\d{3}-\d{7}

Refer this Regex Mega post

3 Likes