正则-Strip函数

前端之家收集整理的这篇文章主要介绍了正则-Strip函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

正则-Strip函数

@(正则表达式)[正则,strip]

strip()的正则表达式版本

写一个函数,它接受一个字符串,做的事情和strip()字符串方法一样。如果只传入了要去除的字符串,没有其他参数,那么就从该字符串首尾去除空白字符。否则,函数第二个参数指定的字符将从该字符串中去除

import re


def strip(text,chars=None):
    """去除首尾的字符 :type text: string :type chars: string :rtype: string """
    if chars is None:
        reg = re.compile('^ *| *$')
    else:
        reg = re.compile('^[' + chars + ']*|[' + chars + ']*$')
    return reg.sub('',text)


print(strip(' 123456 '))  # 123456
print(strip(' 123456'))  # 123456
print(strip(' 123456'))  # 123456
print(strip('123456 654321'))  # 123456 654321
print(strip('123456 654321','1'))  # 23456 65432
print(strip('123456 654321','1234'))  # 56 65
print(strip('123456 654321','124'))  # 3456 6543
原文链接:https://www.f2er.com/regex/358371.html

猜你在找的正则表达式相关文章