禁止转义
Posted hui-code
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了禁止转义相关的知识,希望对你有一定的参考价值。
# 加u说明编码的方式
data_str = u‘中文测试‘
print(‘加u,说明是unicode编码的变量 ---- ‘, len(data_str))
加u,说明是unicode编码的变量 ---- 4
# 禁止的转义功能
r_str = r‘
‘
o_str = ‘\n‘
print(‘加r,去掉反斜杠的转义功能 --- ‘, r_str)
print(‘加, 去掉反斜杠的转义功能 --- ‘, o_str)
加r,去掉反斜杠的转义功能 ---
加, 去掉反斜杠的转义功能 ---
# b开头,说明这个是一个二进制的数据类型
data_str = ‘this is a test‘
data_bytes = data_str.encode()
print(‘二进制的数据类型:--- ‘, data_bytes)
print(‘二进制的数据长度:--- ‘, len(data_bytes))
二进制的数据类型:--- b‘this is a test‘
二进制的数据长度:--- 14
data_str = ‘中文测试‘
data_bytes = data_str.encode()
print(‘二进制的数据类型:--- ‘, data_bytes)
print(‘二进制的数据长度:--- ‘, len(data_bytes))
二进制的数据类型:--- b‘xe4xb8xadxe6x96x87xe6xb5x8bxe8xafx95‘
二进制的数据长度:--- 12
以上是关于禁止转义的主要内容,如果未能解决你的问题,请参考以下文章
LinkedIn Share API 是不是支持转义片段 URL(hasbang url)
使用 sqlite 的 FTS 片段函数处理 html 转义
在 Rails 上为连接、限制、选择等(不是条件)的 SQL 片段安全地转义字符串
npm : 无法加载文件 D:softcodeProcess ode ode_global pm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.micr +(代码片段