-
尝试从字符串中删除任何看起来像 HTML 标记的内容,即
<>
中包含的任何内容。绝对不保证生成的字符串是 HTML 安全的。因此,切勿将
strip_tag
调用的结果标记为安全,而不先将其转义,例如使用escape()
例如:
strip_tags(value)
如果
value
是"<b>Joel</b> <button>is</button> a <span>slug</span>"
,则返回值将是"Joel is a slug"
。如果您正在寻找更强大的解决方案,请查看bleach Python 库。
本文介绍 django.utils.html.strip_tags
的用法。
声明
strip_tags(value)[source]
相关用法
- Python string strip()用法及代码示例
- Python strip()用法及代码示例
- Python string转integer用法及代码示例
- Python Django stringfilter用法及代码示例
- Python string.octdigits用法及代码示例
- Python string.whitespace用法及代码示例
- Python string capitalize()用法及代码示例
- Python string.punctuation用法及代码示例
- Python string center()用法及代码示例
- Python str.isidentifier用法及代码示例
- Python str.expandtabs用法及代码示例
- Python str.title用法及代码示例
- Python str.isupper用法及代码示例
- Python str.rstrip用法及代码示例
- Python str.splitlines用法及代码示例
- Python str() vs repr()用法及代码示例
- Python str.lstrip用法及代码示例
- Python str.removeprefix用法及代码示例
- Python str.split用法及代码示例
- Python str()用法及代码示例
- Python str.zfill用法及代码示例
- Python str.strip用法及代码示例
- Python strftime()用法及代码示例
- Python str.format_map用法及代码示例
- Python str.removesuffix用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.utils.html.strip_tags。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。