我有一个带有以下行的文本文件 - a boy is drinking water
。假设我将此文件称为 A.txt
我的目标是water
用用户在 A.txt 中输入的任何内容替换这个词。并保持其他东西完好无损。如果 A.txt 更改为a boy is drinking juice
并将 A.txt 作为参数传递给 Python 脚本,我希望输出为a boy is drinking juice
.
我们如何才能只替换字符串中的那个特定字母。
我有一个带有以下行的文本文件 - a boy is drinking water
。假设我将此文件称为 A.txt
我的目标是water
用用户在 A.txt 中输入的任何内容替换这个词。并保持其他东西完好无损。如果 A.txt 更改为a boy is drinking juice
并将 A.txt 作为参数传递给 Python 脚本,我希望输出为a boy is drinking juice
.
我们如何才能只替换字符串中的那个特定字母。
打开文件,检索内容。
要替换单词中的某个字符串,请使用textFromFile.replace('oldtext','newtext')
将内容保存到文件。
使用此代码
namespace string_replace
{
class Program
{
static void Main(string[] args)
{
string text = System.IO.File.ReadAllText(@"a.txt");
//read the text to replace
text.Replace("water","user_string");
System.IO.File.WriteAllText(@"A.txt", text);
}
}
}