Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
RegEx.IsMatch doesn't
Message
De
30/08/2011 09:48:40
 
 
À
30/08/2011 09:38:27
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Divers
Thread ID:
01522238
Message ID:
01522253
Vues:
21
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform