Hello all,
Anyone know of a site that explain how the ValidationExpression property script works?
\d = numeric
\w = letters
{#nr} = amount of numerics/letters
Thats about it of what I understand.
Trying to match the following :
(###) ###-###
I tried with :
..but its not working.
Hope someone out there knows
Best Wishes,
/Farek
Anyone know of a site that explain how the ValidationExpression property script works?
\d = numeric
\w = letters
{#nr} = amount of numerics/letters
Thats about it of what I understand.
Trying to match the following :
(###) ###-###
I tried with :
Code:
(\d{3}) \d{3}-\d{3}
..but its not working.
Hope someone out there knows
Best Wishes,
/Farek