batch file - cannot replace this character from a variable -
i trying remove special characters ’
filenames
set "filename=%filename:’='%"
this works command line not script.
just finish up, here's answer.
change codepage more supported codepage, such unicode utf-8. corresponding codepage id 65001
. change this, add:
chcp 65001
you can add snippet anywhere before set statement.
Comments
Post a Comment