I am trying to extract specific text inbetween ( ) from a string with text.
Example of text:
Tab Page
The SA (551503809755) cannot be stopped on 2019‑07‑23, which is before its start date (2019‑07‑24)
So far I have done this with multiple assigns and substring with specific numbers for substract. But I would like it to be as dynamic as possible, and substracting all text/numbers between ( )
In Matches activity you have Input property, this is where you put your whole string, then Pattern property, this is where you put your Pattern (in double quotes) and you can use CTRL+K to create RegexResult in Result property.
After that you can use RegexResult(0).Value (where 0 is first match, 1 is second match etc…) to get the desired result