in reply to Re: regular expression to check if the textbox contains only special characters
in thread regular expression to check if the textbox contains only special characters

  print /^(?:[A-Z_0-9]+,?)+(?<!,)$/ ? 'good' : 'bad';

Thankyou everyone.

  • Comment on Re^2: regular expression to check if the textbox contains only special characters
  • Download Code