Dividing using a RegEx

VBchick

New member
Joined
May 6, 2004
Messages
1
I have the following two regular expression. I need to extract the Price divided by Unit. How can I do it with these two?? The problem is that the Unit has "GB". How can I create a regular expression where I can disable the GB and do the numerical division.


Dim regexPrice As New Regex("\$\d+(\.\d+)?")
Dim regexSize As New Regex("(\d+)GB", RegexOptions.IgnoreCase)

Thank You
 

Similar threads

E
Replies
0
Views
92
etl2016
E
N
Replies
0
Views
90
Narayana Reddy GundReddy
N
I
Replies
0
Views
154
Innovators World Wide
I
R
Replies
0
Views
125
Richard.Haggard
R
Back
Top