Regex to select word in the next line of a string

@VB_Tech_pro - here you go…

(?<=SGD AMOUNT\s+\r?\n?\d+\s+)\S+

Assumption: SGDAmount always present in the previous line…

Hope this helps…

2 Likes