-
嘗試從字符串中刪除任何看起來像 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。