Hi
How do I extract all characters, including in new lines after a certain word? There could be any number of new lines
Eg
`
(System.Text.RegularExpressions.Regex.Match(text1,“(?<=Toys).*(\n).+”).Value)
This only extracts text on the same line & next line as “Toys”
Thanks
HI @Anonymous2
Can you pass me an example of what is the string is and what text you are trying to pick…
Happy Automation 
Thanks,
Shubham
Hi Shubham_Varshney
I can’t provide you with the exact file due to confidentiality. Attached is an example It would be everything after the word “Toys”. Hence from the example
sample.txt (159 Bytes)
Quantity 3
Price 5
Sales 15
gooooooooo
ogpgpd
goppkd
I can suggest an alternative
- Look for the text Toys in the string
- Split it using that
- The value can be found in the array field as required

Hope this helps 
Happy Automation 
Got the regex as well for the same 
(?<=Toys)(?s)(.*$)