I want to replace every occurance of "[0:12:#abc():34]" with
"#abc(34)", but the following is not doing the trick:
perl -pi~ -e 's/[0:12:#abc():34]/#abc(34)/g' file.txt
How can I replace literal brackets? []
-Brendan
Hello,
I need to extract information from "rows" in an XML file.
<row id="LABEL0">
<tag a="Japanese" b="0" c="0">Japanese Text0</tag>
<tag a="English A" b="0" c="0">English Text A0</tag>
<tag a="English B" b="0" c="0">English Text B0</tag>
</row>
English Text A contains Japanese special...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.