【发布时间】:2020-07-17 10:38:06
【问题描述】:
我有一长串 HTML 代码。我正在寻找两个特定标签之间的所有文本:<row> 和 </row>
例如:
str = "<row> hello, this is an example </row> more example text <row> even more </row>
想要的输出:
new_list = ['hello, this is an example', 'even more']
提前致谢!
【问题讨论】: