Skip to content
On this page

middle

获取字符串中两个指定子串之间的部分

python
from usepy import middle

参数

  • original_str: 原始字符串
  • start_str: 开始子串(可选)
  • end_str: 结束子串(可选)

例子

python
>>> middle('abc123def', 'abc', 'def')
'123'

Released under the MIT License.