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.
Solved! Go to Solution.
If "Tel:" is always present, you can use this expression:
split('your_text', 'Tel:')[1]
If "Tel:" is always present, you can use this expression:
split('your_text', 'Tel:')[1]
User | Count |
---|---|
88 | |
37 | |
25 | |
13 | |
13 |
User | Count |
---|---|
121 | |
55 | |
36 | |
24 | |
21 |