Need regex for following condition

ramesh_r
Mega Sage

Hi All,

Please help me to create a regex for the below condition.

 The field only allows alphanumeric characters, periods, underscores, hyphens and parenthesis and cannot end in a period.

 

Thanks

Ramesh R

1 ACCEPTED SOLUTION

Saiganeshraja
Kilo Sage
Kilo Sage
Regex for

Letters, Numbers, Dashes, and Underscores

([A-Za-z0-9\-\_]+)
 
Mark Correct,if it helps

View solution in original post

2 REPLIES 2

Sai Ganesh Raja
Tera Contributor
Regex for

Letters, Numbers, Dashes, and Underscores

([A-Za-z0-9\-\_]+)
 
Mark Correct,if it helps

Saiganeshraja
Kilo Sage
Kilo Sage
Regex for

Letters, Numbers, Dashes, and Underscores

([A-Za-z0-9\-\_]+)
 
Mark Correct,if it helps