更改列中的数字字符串

2024-09-28 19:00:03 发布

您现在位置:Python中文网/ 问答频道 /正文

背景

我有一个样本df,其中Text列包含0、1或>;1 ABC

import pandas as pd
df = pd.DataFrame({'Text' : ['Jon J Mmith  ABC: 1111111 is this here', 
                                   'ABC: 1234567 Mary Lisa Rider found here', 
                                   'Jane A Doe is also here',
                                'ABC: 2222222 Tom T Tucker is here ABC: 2222222 too'], 

                      'P_ID': [1,2,3,4],
                      'N_ID' : ['A1', 'A2', 'A3', 'A4']

                     })

#rearrange columns
df = df[['Text','N_ID', 'P_ID']]
df

                            Text                      N_ID  P_ID
0   Jon J Mmith ABC: 1111111 is this here               A1  1
1   ABC: 1234567 Mary Lisa Rider found here             A2  2
2   Jane A Doe is also here                             A3  3
3   ABC: 2222222 Tom T Tucker is here ABC: 2222222...   A4  4  

目标

1)将Text列(例如ABC: 1111111)中的ABC数字更改为ABC: **BLOCK**

2)创建包含此输出的新列Text_ABC

所需输出

                             Text                  N_ID P_ID Text_ABC
0   Jon J Mmith ABC: 1111111 is this here          A1   1   Jon J Mmith ABC: **BLOCK** is this here
1   ABC: 1234567 Mary Lisa Rider found here        A2   2   ABC: **BLOCK** Mary Lisa Hider found here   
2   Jane A Doe is also here                        A3   3   Jane A Doe is also here 
3   ABC: 2222222 Tom T Tucker is here ABC: 2222222 A4   4   ABC: **BLOCK** Tom T Tucker is here ABC: **BLOCK**

问题

我如何实现我想要的输出?你知道吗


Tags: textiddfhereisthisblockabc
1条回答
网友
1楼 · 发布于 2024-09-28 19:00:03

如果要替换所有数字,可以执行以下操作:

df['Text_ABC'] = df['Text'].replace(r'\d+', '***BLOCK***', regex=True)

但是如果您想更具体一些,并且只替换ABC:之后的数字,那么您可以使用以下方法:

df['Text_ABC'] = df['Text'].replace(r'ABC: \d+', 'ABC: ***BLOCK***', regex=True)

给你:

df
                                                Text  P_ID N_ID                                           Text_ABC
0             Jon J Smith  ABC: 1111111 is this here     1   A1           Jon J Smith  ABC: ***BLOCK*** is this here
1            ABC: 1234567 Mary Lisa Rider found here     2   A2          ABC: ***BLOCK*** Mary Lisa Rider found here
2                            Jane A Doe is also here     3   A3                            Jane A Doe is also here
3  ABC: 2222222 Tom T Tucker is here ABC: 2222222...     4   A4  ABC: ***BLOCK*** Tom T Tucker is here ABC: ***BLOCK...

作为正则表达式,\d+表示“匹配一个或多个连续数字”,因此在^{}中使用它表示“用***BLOCK***替换一个或多个连续数字”

相关问题 更多 >