[SOLVED] regular expression
amypu
New Altair Community Member
How do I extract "AMD" from "Advanced Micro Devices, Inc. (AMD)"?
What would regular expression be for this?
What would regular expression be for this?
Tagged:
0
Answers
-
It depends on the operator you are using but if you are looking for everything between the brackets then you would need a capturing group.
Something like this
\((.*)\)
then $1 would return what you need
Andrew0 -
Thanks much!0