The quick answer is "No, not with basic windows utilities"
But as the other answers suggested, there are lots of unix ports out there that do what you want. Take alook at gnuwin32 packages.
EDIT:
Okay, I revise my strict "No". There might be a way of doing it, depending on the complexity of your task and your OS. When using windows 2000 and above, cmd provides command extensions that you can use.
The basic idea is to use a FOR loop to go through each line of an input file and then to use string substitution provided by the SET command to replace your characters.
I have no solution at hand but you might try on your own, using infromation from this quite cool site. Look here for the FOR loop syntax and here for the string substitution.
The quick answer is "No, not with basic windows utilities"
But as the other answers suggested, there are lots of unix ports out there that do what you want. Take alook at gnuwin32 packages.
EDIT:
Okay, I revise my strict "No". There might be a way of doing it, depending on the complexity of your task and your OS. When using windows 2000 and above, cmd provides command extensions that you can use.
The basic idea is to use a FOR loop to go through each line of an input file and then to use string substitution provided by the SET command to replace your characters.
I have no solution at hand but you might try on your own, using infromation from this quite cool site. Look here for the FOR loop syntax and here for the string substitution.