如何为 python 编写一个正则表达式,它删除前导和尾随下划线而不是两个单词之间的下划线?
例如:
输入:_word 输出:word
_word
word
输入:word_ 输出:word
word_
输入:word_word 输出:word_word
word_word
炎炎设计
相关分类