我想知道如何在这种情况下使用替换。我有 2 个名为myfile.txt和responsefile.txt的文件,如下所示。
我的文件.txt
user=myname
user_1=yourname
group=mygroup
group_1=yourgroup
响应文件.txt
#Please fill the user id details.
user=
#user_1=
#Please fill the group id details.
group=
#group_1=
现在,使用上述两个文件希望在替换匹配模式后具有以下最终结果。responsefile.txt 内容应该是完整的,只是匹配的模式应该以 myfile.txt 中提供的详细信息为前缀,或者只替换整个匹配行,因为两个文件中的模式相同。
responsefile.txt(新文件替换/替换为模式)
#Please fill the user id details.
user=myname
user_1=yourname
#Please fill the group id details.
group=mygroup
group_1=yourgroup
模式将没有散列或带有散列,因此必须在匹配时删除散列。请注意文件 responsefile.txt 的长度约为 604L、16481C
请建议,希望有简单的解决方案,因为实际场景中的内容会有100多个类似的模式。以上只是举例。
谢谢拉杰什