正则表达式 re.sub 出现sub() missing 1 required positional argument: ‘string‘

sub() missing 1 required positional argument: 'string'

Sub()缺少1个必需的位置参数:'string'  

我们需要检查一下格式是否正确

	def sub(pattern, repl, string, count=0, flags=0):
	    """Return the string obtained by replacing the leftmost
	    non-overlapping occurrences of the pattern in string by the
	    replacement repl.  repl can be either a string or a callable;
	    if a string, backslash escapes in it are processed.  If it is
	    a callable, it's passed the match object and must return
	    a replacement string to be used."""
	    return _compile(pattern, flags).sub(repl, string, count)

(1)pattern:正则中的模式字符串;
(2)repl:替换的字符串(repl去替换pattern)可以是个函数;
(3)string:被处理(查找替换)的字符串;
(4)count:可选,替换的最大次数,必须>=0,该参数默认为0(所有的匹配都会被替换);
(5)flags:可选,编译时用的匹配模式(如忽略大小写、多行模式等),数字形式,默认为0。

出现ub() missing 1 required positional argument: 'string',就是缺少第三个变量 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

夜间出没的AGUI

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值