Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本上,我正在努力提取数据并导入新领域。可以这样做:
namewithprefix="PS4 | Call of Duty" namewithoutprefix=""
我希望它看起来像这样
namewithprefix="PS4 | Call of Duty" namewithoutprefix="Call of Duty"
两者都在 xml 文档的同一行
非常感谢
寻找:
namewithprefix="(.+) \| (.+)" namewithoutprefix=""
代替:
namewithprefix="$1 | $2" namewithoutprefix="$2"
.+将找到任意数量的 1 个或多个字符,并且其中的任何内容都()被捕获为变量。然后在替换中使用这两个变量 as$1和$2。
.+
()
$1
$2