pandas extract 字符
时间: 2023-10-22 10:07:04 浏览: 62
pandas中去除指定字符的实例
串中的数字,该如何实现?
可以使用正则表达式,例如:
import re
text = "The price of the product is $123.45"
result = re.findall('\d+\.\d+', text)
print(result)
输出结果为 ['123.45'],即提取出了字符串中的数字。
阅读全文
pandas中去除指定字符的实例