python 使用python进行正则表达式的一些技巧

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用python进行正则表达式的一些技巧相关的知识,希望对你有一定的参考价值。

# this a list in python,\n represents newline
a = ['1', '2', '3', '4', '\n']
# convert list to string
a = ''.join(a)
# delete '\n'
a = a.rstrip('\n')
# convert string to integer
a = map(int, a)
# splitline
a = ['1', '2', '3', '4', '\n', '5', '6', '7', '8']
a = a.splitlines()


以上是关于python 使用python进行正则表达式的一些技巧的主要内容,如果未能解决你的问题,请参考以下文章

详解 Python3 正则表达式

python 正则表达式之转义字符

Python中正则表达式的匹配规则总结

Python --- 正则表达式

python的正则表达式

python024