gpt4 book ai didi

python - Pandas 正则表达式提取网络IP地址子串

转载 作者:行者123 更新时间:2023-11-28 22:30:09 24 4
gpt4 key购买 nike

如何使用正则表达式查找 IP 网络?

例子

IP 
234.523.213.462:321
21.236.432.123:66666
213.406.421.436:7324

我要

IP                Port 
234.523.213.462 321
21.236.432.123 66666
213.406.421.436 7324

需要帮助!谢谢。

最佳答案

使用矢量化 pandas 方法 str.split :

df[['IP','Port']] = df.IP.str.split(':', expand=True)
print (df)
IP Port
0 234.523.213.462 321
1 21.236.432.123 66666
2 213.406.421.436 7324

正则表达式的解决方案(如果只有数字,:.):

df[['IP','Port']] = df.IP.str.extract('(.*):(.*)', expand=True)
print (df)
IP Port
0 234.523.213.462 321
1 21.236.432.123 66666
2 213.406.421.436 7324

关于python - Pandas 正则表达式提取网络IP地址子串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42500898/

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