基本上,我正在努力提取数据并导入新领域。可以这样做:
namewithprefix="PS4 | Call of Duty" namewithoutprefix=""
我希望它看起来像这样
namewithprefix="PS4 | Call of Duty" namewithoutprefix="Call of Duty"
两者都在xml文档的同一行
非常感谢
答案 0 :(得分:0)
查找
namewithprefix="(.+) \| (.+)" namewithoutprefix=""
替换:
namewithprefix="$1 | $2" namewithoutprefix="$2"
.+
会找到任意数量的1个或多个字符,()
中的任何内容都会被捕获为变量。然后,这两个变量在替换中用作$1
和$2
。