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不包含任何捕获组所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)