Is it possible to get everything after a carriage return?
Example
Bills to pay:
Car
House
Boat
etc
I tried to use rex :
"[\r\n]+(?<Sites>.*)"
but this did not work.
Hi ruhjuh,
try this regex:
base search here | rex "pay:[\r\n](?<site>[^$]+)" | table site
it will match Car House Boat etc
from your example.
cheers, MuS
Hi ruhjuh,
try this regex:
base search here | rex "pay:[\r\n](?<site>[^$]+)" | table site
it will match Car House Boat etc
from your example.
cheers, MuS
That worked fantastically. Thanks.
What do you want to get from the provided example?
I'd like to get from the example "Car House Boat etc"