expression looking for special characters

  • Hi,

    I am looking for the proper expression to use looking for the following special characters in a field value:

    []*|\":?/><`~@!$%^&()+=}{;,

    if found i want to have it return a True, False

    Can anyone help me?

    Thank you!

  • Please check this link

  • thank you i resolved it by using the following syntax:

    =IIF(System.Text.RegularExpressions.Regex.IsMatch(Fields!Name.Value, "[*|\:?/><`~@!$%^&()+=}{;,]"), False, True)

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply