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.


Perl reduces RSI - it saves typing
  • Comment on Re^3: how can I use regular expresion if my string to be matched has round brackets
  • Download Code