删除带有正则表达式

时间:2015-07-10 18:55:28

标签: python regex

我将通过python的re功能删除第一个索引空间和最后一个索引空间:

我试过了:

    re.sub(r"\s+" ,""," hello world ") // remove the first place space

但它没有删除任何东西。

1 个答案:

答案 0 :(得分:1)

>>> re.sub(r'^\s+|\s+$', '', ' hello world ')
'hello world'

这将删除所有前导和尾随空格,但不一定只是第一个和最后一个索引。