Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.9k views
in Technique[技术] by (71.8m points)

python - String extract with loc

I am tryin to format bibliography in a dataframe. Basically, for a column named "Bibliography", I want to extract the titles, sometimes delimited by and sometimes delimited by "

Now when I use

df.loc[df['Bibliography'].str.extract(?<=&quot;)(.*?)(?=,&quot;)

It correctly extracts the titles delimited by " (but will produce NaN for titles delimited by )

So I tried applying str.extract over a slice of the data frame using .loc

df.loc[df['Bibliography'].str.contains('&quot;'),'Bibliography']=df.loc[df['Bibliography'].str.contains('&quot;'),'Bibliography'].str.extract(r'(?<=&quot;)(.*?)(?=,&quot;)')

But this results in NaN. I can't figure out why I can't use extract over a slice of the data frame.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...