标签: python pandas dataframe
我正在处理DataFrame,并希望在一行中输出import re pattern = r'conf(i(g(u(r(e)?)?)?)?)?\st(e(r(m(i((n(a(l)?)?)?))?)?)?)?' text='config t' print(re.match(pattern, text)),id1和id2的所有选定值。我试了一下,如图所示:
import re pattern = r'conf(i(g(u(r(e)?)?)?)?)?\st(e(r(m(i((n(a(l)?)?)?))?)?)?)?' text='config t' print(re.match(pattern, text))
id1
id2
我尝试的代码如下:
id3