python中的字符串条

时间:2016-12-12 21:57:23

标签: python python-3.x

我需要剥离"域名"来自" domain \ name"从字面上提取可以是任何名称或单词名称的名称

>>> s="domain\name"

>>> x=s[5:]
>>> print(x)
n
ame
>>> s="domain\bh16"
>>> x=s[5:]
>>> print(x)
h16
>>> x=s[4:]
>>> print(x)
ih16

1 个答案:

答案 0 :(得分:2)

您可以将其转换为原始字符串并正常使用replace

s = r"domain\bh16"

print(s.replace("domain\\", '')) #bh16