python编写程序在一个字符串中找到<>中包住的子字符串
时间: 2023-05-23 13:01:56 浏览: 104
可以使用正则表达式来实现,在 Python 中可以使用 re 模块。下面是一个示例代码:
import re
string = "This is a <sub>sub</sub> string with <bold>bold</bold> and <italic>italic</italic> text."
pattern = "<.*?>" # 匹配以 < 开头,以 > 结尾的最小字符串
matches = re.findall(pattern, string)
print(matches) # 输出 ['<sub>', '</sub>', '<bold>', '</bold>', '<italic>', '</italic>']
这个代码可以找到所有被 <> 包含的字符串,不论它们的内容是什么。
阅读全文