[SOLVED] regular expression

User: "amypu"
New Altair Community Member
Updated by Jocelyn
How do I extract "AMD" from "Advanced Micro Devices, Inc. (AMD)"?
What would regular expression be for this?

Find more posts tagged with

Sort by:
1 - 2 of 21
    User: "Andrew2"
    New Altair Community Member
    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

    Andrew
    User: "amypu"
    New Altair Community Member
    OP
    Thanks much!