Options

[SOLVED] regular expression

amypuamypu Member Posts: 7 Contributor II
edited November 2018 in Help
How do I extract "AMD" from "Advanced Micro Devices, Inc. (AMD)"?
What would regular expression be for this?

Answers

  • Options
    awchisholmawchisholm RapidMiner Certified Expert, Member Posts: 458 Unicorn
    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
  • Options
    amypuamypu Member Posts: 7 Contributor II
    Thanks much!
Sign In or Register to comment.