I would like to replace the following String in a file:
android:versionName=\"anyStringHere\" >
*anyStringHere represents any possible s
I found that using sed was the cleanest solution
http://gnuwin32.sourceforge.net/packages/sed.htm
sed "s/android:versionName=\".*\" >/android:versionName=\"%NEW_VERSION%\" >/g" %ORIG_FILE_NAME% > %TEMP_FILE_NAME% @move /Y %TEMP_FILE_NAME% %ORIG_FILE_NAME% >nul