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
?
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
?