Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
RegEx.IsMatch doesn't
Message
From
30/08/2011 09:48:40
 
 
To
30/08/2011 09:38:27
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01522238
Message ID:
01522253
Views:
20
Didn't realize Gregory had already replied (about six times :-} )

>Thanks Viv,
>
>That's close to what Gregory came up with: "^ *-?\d+(\.\d{2})?$"
>
>>Just a quick look but are you sure the expression shouldn't be: "^-?\d+(.\d{2})?$"
>>
>>>I'm trying to run some code I found on the net for use in an SSRS report. Here is the relevant bit:
>>>
>>>
Shared expr As New  _
>>>System.Text.RegularExpressions.Regex("^-?d+(.d{2})?$", _
>>>System.Text.RegularExpressions.RegexOptions.None)
>>>
>>>Public Function ExpandPrice(ByVal Price As Double, Optional ByVal pSeparator As String = ".") As String
>>>
>>>    Dim pPrice As String
>>>    pPrice = FORMAT(Price, "##############.00")
>>>
>>>    Dim temp As New System.Text.StringBuilder()
>>>    If Not expr.IsMatch(pPrice) Then
>>>        ' temp.Append(pPrice) or whatever you want to do here 
>>>        temp.Append("we got here")
>>>    Else
>>>
>>>What I am getting back from this function is the text "we got here" when I pass 208.26 (or any other number for that matter) in. I don't know VB very well, nor the Regular Expressions stuff so would appreciate if anyone could point out why the passed in number is failing the IsMatch check.
>>>
>>>Thanks
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform