Want to extract relevant information below regards in the mail signature

I need to extract this book house name after the regard word,Please help in scrapping the relevant word
Regards
PROFESSIONAL BOOK HOUSE
G2, Rubicon Shopping Complex

hey!

Refer to this post, it tells you how to split string using a newline…
Then you can access the book store name easily.

Thank you :blush: I’ll refer through it

Hi - Use Regex to extract this.

Regards\s*([^\n\r]*)

Your desired match will be in capture group 1.

~Nitesh