python使用正则表达式删除字符串中的其它字符只保留数字和字母
Posted Data+Science+Insight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用正则表达式删除字符串中的其它字符只保留数字和字母相关的知识,希望对你有一定的参考价值。
python使用正则表达式删除字符串中的其它字符只保留数字和字母
#python使用正则表达式删除字符串中的其它字符只保留数字和字母
# Python code to demonstrate
# to remove all the characters
# except numbers and alphabets
import re
# initialising string
ini_string = "123abcjw:, .@! eiw"
# printing initial string
print ("initial string : ", ini_string)
# function to demonstrate removal of characters
# which are not numbers and alphabets using re
result = re.sub(\'[\\W_]+
以上是关于python使用正则表达式删除字符串中的其它字符只保留数字和字母的主要内容,如果未能解决你的问题,请参考以下文章
Python 正则表达式。删除 ':' 之后的所有字符(包括行尾和特定字符串除外)