SPUtility.IsValidStringInput - Méthode
Détermine si le texte spécifié est dans un format valide, tel que spécifié par une expression régulière.
Espace de noms : Microsoft.SharePoint.Utilities
Assembly : Microsoft.SharePoint (dans Microsoft.SharePoint.dll)
Syntaxe
'Déclaration
Public Shared Function IsValidStringInput ( _
regexp As String, _
newValue As String _
) As Boolean
'Utilisation
Dim regexp As String
Dim newValue As String
Dim returnValue As Boolean
returnValue = SPUtility.IsValidStringInput(regexp, _
newValue)
public static bool IsValidStringInput(
string regexp,
string newValue
)
Paramètres
regexp
Type : System.StringL'expression régulière qui spécifie le format valide.
newValue
Type : System.StringTexte à valider.
Valeur renvoyée
Type : System.Boolean
Cette propriété renvoie true si le texte est dans le format spécifié ; dans le cas contraire, false.
Remarques
Cette méthode détermine si la valeur du paramètre newValue correspond à l'expression régulière dans le paramètre regexp .