python – pandas ValueError:pattern不包含任何捕获组

python – pandas ValueError:pattern不包含任何捕获组,第1张

概述使用正则表达式时,我得到: import restring = r'http://www.example.com/abc.html'result = re.search('^.*com', string).group() 在熊猫中,我写道: df = pd.DataFrame(columns = ['index', 'url'])df.loc[len(df), :] = [1, 'http: 使用正则表达式时,我得到:

import restring = r'http://www.example.com/abc.HTML'result = re.search('^.*com',string).group()

在熊猫中,我写道:

df = pd.DataFrame(columns = ['index','url'])df.loc[len(df),:] = [1,'http://www.example.com/abc.HTML']df.loc[len(df),:] = [2,'http://www.hello.com/def.HTML']df.str.extract('^.*com')ValueError: pattern contains no capture groups

如何解决问题?

谢谢.

解决方法 根据 docs,您需要为str.extract指定捕获组(即括号),以及提取.

SerIEs.str.extract(pat,flags=0,expand=True)
For each subject
string in the SerIEs,extract groups from the first match of regular
Expression pat.

每个捕获组在输出中构成其自己的列.

df.url.str.extract(r'(.*.com)')                        00  http://www.example.com1    http://www.hello.com
# If you need named capture groups,df.url.str.extract(r'(?P<URL>.*.com)')                      URL0  http://www.example.com1    http://www.hello.com

或者,如果你需要一个系列,

df.url.str.extract(r'(.*.com)',expand=False)0    http://www.example.com1      http://www.hello.comname: url,dtype: object
总结

以上是内存溢出为你收集整理的python – pandas ValueError:pattern不包含任何捕获组全部内容,希望文章能够帮你解决python – pandas ValueError:pattern不包含任何捕获组所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1192220.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存