find and replace double bracket links with single bracket links 08-29-2014d0738

2014-08-29

find and replace double bracket links with single bracket links 08-29-2014d0738

find and replace double bracket links with single bracket links
f
\\[(.+?)\\]
r
$1

to do this across many files use this perl command
perl -pi -e 's/\\[(.+?)\\]/$1/g' *.txt
^using this perl method can have some problem with some filenames.

java code to go through many text files in a folder and replace any double bracket links with single bracket links. The modified text files are output into a new directory.
"C:\Users\kurtw_000\Documents\kurt\storage\pDR\2014\08-29-2014d0818\Sandbox"