| New Member | Perl match for brackets [] Is there a way to search for a [ in Perl using character codes or other methds? I have tried a \[ escape but that does not work. for example
$string = =~ s/[//;
Will not work because perl sees the [ and thinks it is an unclosed statement. |