i want batch file to make changes in uppercase only not in the lowercase
the changes is to make before every A (etc from alphabetical) to -A
lets say he wrote "AbkijCljfs" after comparison it will be "-Abkij-Cljfs"
without external file using cmd only
This uses an unicode
cmd
instance piped intomore
to split the string and afor
loop to determine if each of the characters is or not uppercase.