View Single Post
ginggs's Avatar
Posts: 306 | Thanked: 582 times | Joined on Mar 2012
#5
Great! One of the features I missed most, finally coming to the N9. Thank you.

My operator replies to *101# as follows:
Code:
Available Balance: R 1.35 .SMS/MMS: 0.Data: 1706.72 MB.
I am only interested in the first and third values, so I tried using this as my regex:
Code:
.*?(\d+\.\d+).*?(\d+).*?(\d+\.\d+)
...and this as my template:
Code:
R%1, %3MB
...but it didn't work. Any suggestions, please?