Hello,
I am trying to figure out how to grab the text that comes after a specific character. It would be whatever comes after "Tel:"
The text before "Tel:" could be any length, so I can't have it grab based on a specific number of characters.
If "Tel:" is always present, you can use this expression:
split('your_text', 'Tel:')[1]