gpt4 book ai didi

python - 删除多个字符并加入 Pandas 列

转载 作者:行者123 更新时间:2023-11-28 22:15:31 25 4
gpt4 key购买 nike

我正在尝试格式化此字符串但不包括以下字符:( )

My_name (1)
Your_name (2)

期望的输出:

My_name_ID_1
Your_name_ID_2

这是我的数据框的一列。我尝试一次只替换一个字符,我也想在之后加入。

我可以加入并替换这两个字符吗?

最佳答案

您可以在 str.replace 中使用正则表达式:

s.str.replace(r'(\w+)\s+\(([^\)])\)', r'\1_ID_\2')

0      My_name_ID_1
1 Your_name_ID_2
Name: 0, dtype: object

另一种方法是:

s.str.replace(r'\s+\(([^\)])\)', r'_ID_\1')

如果你不想那么直白。


正则表达式解释

(                          # matching group 1
\w+ # matches any word character
)
\s+ # matches one or more spaces
\( # matches the character (
( # matching group 2
[^\)] # matches any character that IS NOT )
)
\) # matches the character )

关于python - 删除多个字符并加入 Pandas 列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52819641/

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