1. mysql数据库中的换行符
在mysql数据库中, 其换行符为\n 即 char(10), 在python中为chr(10)
2. textarea中的换行符
textarea中的换行符为\r\n
3. web应用中换行符转换
以下是python django web的处理:
# data为textarea获取的数据, 其中包括换行符`\r\n`, 以下是过渡处理
data = data.replace(‘\r\n’, ‘\n’)
# 或 data = data.replace(‘\r\n’, chr(10))
4.js字符与ASCII码互转的方法
大写字母A-Z对应的ASCII码值是65-90
小写字母a-z对应的ASCII码值是97-122
将字母转为ascii嘛的方法:
var str = "A";
str.charCodeAt(); // 65
var str1 = 'a';
str1.charCodeAt(); // 97
将ascii码转为对应字母的方法:
var num = 97;
String.fromCharCode(num); // 'a'
var num1 = 100;
String.fromCharCode(num1); // 'd'
——————— 本文来自 xiaobing_hope 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/xiaobing_hope/article/details/78645273?utm_source=copy
评论前必须登录!
注册