i am looking for a regex pattern that will return me the contents of the first set of brackets in a string.
Eg - text text text text (hello) text (hello2) (hello3) text
..will return "hello"
does anyone know what the pattern looks like for c#?
|
i am looking for a regex pattern that will return me the contents of the first set of brackets in a string. Eg - text text text text (hello) text (hello2) (hello3) text ..will return "hello" does anyone know what the pattern looks like for c#? |
||||
|
|
|
The regexp pattern would look something like this:
Pattern autopsy:
The full pattern will match the brackets and the text inside them, the first subpattern will match only the text inside the brackets (see C# reference how to get them - I don't speak C# ;)) |
|||||||||||||||
|
|
This will return you only what is within the first set of brackets:
|
|||
|
|
|
Bare regex:
In Python you can use it this way:
|
|||||||||
|
|
If the strings are relatively small, you could use a replace instead of a match:
|
|||
|
|