Filtering data between () in sentence

yeah that won’t work either, because he has a string where these brackets exist.

@Steve_Wiegman You can use RegEx to extract data based on a pattern. In this case, you know the pattern since it will always be between ( ). You can read about RegEx here to get started.

In this case, you can use the “Text Parser” → “Match Pattern” module with the following regex to extract data:

(?<=\().+(?=\))

If you have any more questions let us know.

1 Like