in reply to Regex help
the carret "^" must be within bracket angles:
/[^A-Za-z0-9]/ .... for single character
/[^A-Za-z0-9]+/ .... for multiple characters
---
PS:
your example matched single character atd begin of line
|
---|
In Section
Seekers of Perl Wisdom