去掉字符中的<p>和</p>
时间: 2023-12-12 12:02:51 浏览: 82
去掉换行符
4星 · 用户满意度95%
可以使用Python的字符串替换方法,将字符串中的"<p>"和"</p>"替换为空字符串即可。示例代码如下:
```python
string_with_p_tag = "<p>This is a paragraph.</p>"
string_without_p_tag = string_with_p_tag.replace("<p>", "").replace("</p>", "")
print(string_without_p_tag) # 输出:This is a paragraph.
```
以上代码中,首先定义了一个包含"<p>"和"</p>"标签的字符串,然后使用replace方法将"<p>"和"</p>"替换为空字符串,生成一个新的不包含标签的字符串,并输出该字符串。
阅读全文