gpt4 book ai didi

python - perl 到 python...我该怎么做?

转载 作者:太空狗 更新时间:2023-10-30 02:22:58 25 4
gpt4 key购买 nike

我正在尝试学习 python,但不太了解语法。什么相当于:

my $string='this one this that this here ';
while($string=~/this\s+(.*?)\s+/g){
print $1."\n";
}

打印:

one
that
here

最佳答案

试试 re 模块。我认为这是等效的,对 string 的一些副作用取模:

import re
string = "this one this that this here "
for match in re.finditer(r"this\s+(.*?)\s+", string):
print match.group(1)

关于python - perl 到 python...我该怎么做?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7465695/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com