Skip to content
On this page

right

获取字符串中指定子串右侧的部分

python
from usepy import right

参数

  • original_str: 原始字符串
  • start_str: 开始子串

例子

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

Released under the MIT License.