Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We can replace strings in a batch file using the following command

set str="jump over the chair"
set str=%str:chair=table%

These lines work fine and change the string "jump over the chair" to "jump over the table". Now I want to replace the word "chair" in the string with some variable and I don't know how to do it.

set word=table
set str="jump over the chair"
??

Any ideas?

share|improve this question

2 Answers

up vote 11 down vote accepted

You can use !, but you must have the ENABLEDELAYEDEXPANSION switch set.

setlocal ENABLEDELAYEDEXPANSION
set word=table
set str="jump over the chair"
set str=%str:chair=!word!%
share|improve this answer
Thanks vicky, it worked – Faisal May 5 '10 at 11:07
Cool! Thanks! I've needed it for replacing file endings. – Valentin Heinitz Nov 12 '10 at 16:13

You can use the following little trick:

set word=table
set str="jump over the chair"
call set str=%%str:chair=%word%%%
echo %str%

The call there causes another layer of variable expansion, making it necessary to quote the original % signs but it all works out in the end.

share|improve this answer
I like this solution, escaping strings is always problematic in batch files, ENABLEDELAYEDEXPANSION just adds another character to worry about. – Anders May 5 '10 at 19:43
1  
Downvoter: Care to share a reason? – Јοеу May 6 '10 at 11:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.