标签: python regex
我将通过python的re功能删除第一个索引空间和最后一个索引空间:
re
我试过了:
re.sub(r"\s+" ,""," hello world ") // remove the first place space
但它没有删除任何东西。
答案 0 :(得分:1)
>>> re.sub(r'^\s+|\s+$', '', ' hello world ') 'hello world'
这将删除所有前导和尾随空格,但不一定只是第一个和最后一个索引。