Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
RegEx.IsMatch doesn't
Message
De
30/08/2011 08:57:14
 
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Titre:
RegEx.IsMatch doesn't
Divers
Thread ID:
01522238
Message ID:
01522238
Vues:
92
Hi,

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
Frank.

Frank Cazabon
Samaan Systems Ltd.
www.samaansystems.com
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform