字符串的替换
import redef likestrip(a, args):
if args == '':
t = re.compile(r'^\S(.+)+\S
mo = t.search('a')
print(mo.group())
else:
s = re.compile(r'args')
m1 = s.sub('%', a)
print(m1)
text = ' The boys are better '
x = 'are'
likestrip(text, x)
这个函数的目的是:当第二个参数为空时,去掉两边的空格。当第二个字符串不为空时,用sub()方法,用%替换掉a中第二个参数。
但是我这怎么都是原样输出啊?根本没有任何的变动! 看代码吧
import re
def likestrip(a, args):
if args == '':
t = re.compile(r'^\S(.+)+\S')
mo = t.search('a')
print(mo.group())
else:
s = re.compile(args) # 看这里
m1 = s.sub('%',a)
print(m1)
text = ' The boys are better '
x = 'are'
likestrip(text, x)
nahongyan1997 发表于 2021-7-1 08:46
看代码吧
谢谢,传入不为空解决了。
那我如何才能传入第二个参数为空呢? import re
def likestrip(a, args):
if args == '':
t = re.compile(r'\w+')
mo = t.search(a)
print(mo.group())
else:
s = re.compile(args)
m1 = s.sub('%', a)
print(m1)
text = ' The boys are better '
x = 'are'
likestrip(text, x)
likestrip('sdlkf', '')
江湖散人 发表于 2021-7-1 17:08
谢谢,传入不为空解决了。
那我如何才能传入第二个参数为空呢?
如果第二个参数为空那你的函数还有什么意义 basketmn 发表于 2021-7-1 17:50
谢谢,你这方法只能针对单个字符串的。如果传入一句话,例如传入参数text,就只能显示第一个单词,其他就没有了。 nahongyan1997 发表于 2021-7-1 22:25
如果第二个参数为空那你的函数还有什么意义
就是要模仿strip()方法,去掉字符串两边的空格。 本帖最后由 basketmn 于 2021-7-2 13:20 编辑
江湖散人 发表于 2021-7-2 09:37
谢谢,你这方法只能针对单个字符串的。如果传入一句话,例如传入参数text,就只能显示第一个单词,其他就 ...
不知道这样可否达到你的要求
import re
def likestrip(a, args):
if args == '':
t = re.compile(r'\w+.+\w+')
mo = t.search(a)
print(mo.group())
else:
s = re.compile(args)
m1 = s.sub('%', a)
print(m1)
text = ' The boys are better '
x = 'are'
likestrip(text, x)
likestrip('sdlkfwo shi hao ren The boys are better', '')
basketmn 发表于 2021-7-2 13:09
不知道这样可否达到你的要求
对的,就是这个意思
页:
[1]