in reply to Re^2: how can I use regular expresion if my string to be matched has round brackets
in thread how can I use regular expresion if my string to be matched has round brackets
You need:
my $ipn="\\( going \\) there";
The \\ gets replaced by \ when the string is parsed.
|
|---|