gpt4 book ai didi

python - 在python pandas中多次出现相同的分隔符之间提取字符串

转载 作者:行者123 更新时间:2023-12-04 11:26:03 27 4
gpt4 key购买 nike

列“测试”具有多次出现相同分隔符的字符串。我试图获取这些分隔符内的字符串。你能帮忙吗。
示例:

Test
|||||CHNBAD||POC-RM0EP7-01-A
我的代码:
df["Fetch"]=df["Test"].str.rsplit("|", 2).str[-2]
但它给了我一个输出 POC-RM0EP7-01-A .
我希望从字符串中获取“ CHNBAD

最佳答案

使用您显示的样本,请尝试以下操作。我们可以使用 str.extract 函数 pf Pandas 在这里。申请str.extract功能在 Test列并创建名为 Fetch 的新列在数据框中。

df['Fetch'] = df['Test'].str.extract(r'^\|+([^|]*)\|.*',expand=False)
DataFrame 将如下所示:
    Test                            Fetch
0 |||||CHNBAD||POC-RM0EP7-01-A CHNBAD
正则表达式说明:
^\|+     ##Matching 1 or more matches of | from starting of value.
([^|]*) ##Creating 1st capturing group which has everything till next | comes.
\|.* ##Matching | and everything till last of value.

关于python - 在python pandas中多次出现相同的分隔符之间提取字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67652946/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com