将字符串从字符拆分为字符

时间:2015-03-10 13:38:24

标签: python python-2.7

我的字符串看起来像这样:

a = "<some_tag>Characters_with_different_len_to_split</some_tag>"

我想要实现的是从这个字符串中获取:

a = Characters_with_different_len_to_split

我不能通过子串来做到这一点,因为标签之间的字符(只是非数字字符)具有不同的长度。

谢谢!

1 个答案:

答案 0 :(得分:2)

只需用空字符串替换标记。

>>> a = "<some_tag>Characters_with_different_len_to_split</some_tag>"
>>> re.sub(r'<[^<>]*>', '', a)
'Characters_with_different_len_to_split'