Regular expression

  • Thread starter Thread starter Cool
  • Start date Start date
C

Cool

I have a bunch of data in this format:

AccountData(100)
BalanceData(50)

How do I use regex to extract the information ? I expect to get AccountData
and 100 using regular expression. Can this be done using regular expression
?
 
Cool said:
I have a bunch of data in this format:

AccountData(100)
BalanceData(50)

How do I use regex to extract the information ? I expect to get AccountData
and 100 using regular expression. Can this be done using regular expression
?

Search the newsgroup archives for "question for regex" - this should
turn up a thread where I answered a similar question.

HTH & kind regards
frank
 
Back
Top