gertjan2
Newbie
Points: 2
More actions
June 29, 2016 at 1:25 am
#314676
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!
Umer Akram
SSC-Insane
Points: 22209
June 29, 2016 at 1:41 am
#1887517
Please check this link
June 29, 2016 at 7:07 am
#1887608
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