如何使用msbuild替换文件中的字符串

如何使用msbuild替换文件中的字符串

本文介绍了如何使用msbuild替换文件中的字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用ms build中的正则表达式将另一个文件xy.xml中的字符串"i am fine"替换为test.xml文件中的"how r u".

即我必须从一个文件(xy.xml)中读取字符串,并将其替换为另一个文件test.xml.因此,请通过示例提供解决此问题的必要步骤

解决方案

此答案已过时.在下面使用解决方案...

使用ReadLinesFromFile任务从xy.xml文件获取替换字符串. 选中此

然后将xy.xml中的值用作FileUpdate任务的替换字符串. 选中此

将它们放在一起;)

I want to replace a string such "how r u" in file test.xml with a string "i am fine" in another file xy.xml.using regular expression in ms build.

ie i have to read string from one file(xy.xml) and replace it in another file test.xml.so please provide necessary steps to solve this issue with example

解决方案

EDIT: This answer is obsolete. Use solution below...

Use ReadLinesFromFile task to get replacement string from the xy.xml file. Check this

Then use value from xy.xml as a replacement string for FileUpdate task. Check this

And put it all together ;)

这篇关于如何使用msbuild替换文件中的字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 03:44