提问人:raghsak 提问时间:11/10/2023 最后编辑:raghsak 更新时间:11/12/2023 访问量:77
我想使用正则表达式记事本将文本从文本中间的表达式中移出。为了更好地理解,请查看示例 [duplicate]
I want to use regex notepad to displace a text from an expression that is in the middle of the text. For a better understanding, look at the example [duplicate]
问:
例:
这:
into this ($$) business if not to ($$) save the world
需要这个:
save the world ($$) business if not to ($$) into this
答:
0赞
Tim Biegeleisen
11/10/2023
#1
假设文本中间只出现一个标记,我们可以尝试使用捕获组替换正则表达式:($$)
Find: (.*) \(\$\$\) (.*)
Replace: $2 (\$\$) $1
演示
评论
0赞
raghsak
11/10/2023
谢谢我的好朋友,我会测试它,看看它是否有效
0赞
raghsak
11/10/2023
谢谢你,亲爱的朋友,帮助我工作。我想知道是否有办法在文本中间有两个$$,并移动两侧,中间的文本保持在原位。
0赞
Tim Biegeleisen
11/10/2023
这正是我的答案。你费心检查演示吗?
0赞
raghsak
11/10/2023
对不起,我没有注意演示
0赞
raghsak
11/10/2023
我是新来的,我怎么能评价你?
评论