我有一个字符串“复制表a(no = 1,name = xyz,city = c0nl)来自'a.dat';”。 在这里我想删除'copy'和'from'中的单词,但需要file-name为: 我理想的输出是“从a.dat复制a;”
任何帮助都会很棒。我想使用正则表达式。
答案 0 :(得分:5)
您可以将正则表达式模块re
和函数sub
(替换/替换)与前瞻(?=from)
和lookbehind (?<=copy )
结合使用 - 也称为{{ 3}},以便仅删除介于其中的请求部分(.*)
:
import re
print re.sub(r'(?<=copy )(.*)(?=from)', '', "copy table values from 'a.dat';")
<强>输出强>
copy from 'a.dat';
答案 1 :(得分:0)
If running on mdpi device, 150x150 px image will take up 150*150 dp of screen space.
If running on hdpi device, 150x150 px image will take up 100*100 dp of screen space.
If running on xhdpi device, 150x150 px image will take up 75*75 dp of screen space.
使用(?<=\bcopy\b)[\s\S]*?(?=\s*\bfrom\b)
和\b
。请参阅演示。
https://regex101.com/r/sS2dM8/11
lookarounds
输出:import re
p = re.compile(r'(?<=\bcopy\b)[\s\S]*?(?=\s*\bfrom\b)', re.MULTILINE)
test_str = "copy table values from 'a.dat';"
subst = ""
result = re.sub(p, subst, test_str)