|
|
| Keep It Simple, Stupid | |
| PerlMonks |
Answer: how do i replace brackets in a regex? |
| ( #160217=categorized answer: print w/ replies, xml ) | Need Help?? |
|
Q&A > regular expressions > how do i replace brackets in a regex? contributed by Schuk
or
$journal =~ s/(\)|\()//g; "s" for replace "\)" and "\(" for escaping the brackets "|" for or and the whole thing in "(..)" because you want to replace it with nothing "//" "g" finally stands for global -> replacement doesnt stop when you hit the first bracket.
|
|
||||||||||||||||||