# JavaScript 字符串
# String方法
# 字符方法
charAt() 以单字符字符串的形式返回给定位置的那个字符 charCodeAt() 以字符串的形式返回给定位置的那个字符的字符编码
# 字符串的操作方法
concat() 字符串的连接 但是一般采用 '+' 操作符 slice() 字符串的分隔,提取字符串的某个部分 stringObject.slice(start,end; substr() 得到字符串指定的子串 stringObject.substr(start,length); substring() 得到字符串指定的子串 stringObject.substr(start,end); split() 用于把一个字符串分割成字符串数组 stringObject.split(separator,howmany);
# 字符串位置方法
indexOf() lastIndexOf()
# 字符串的大小写互转的方法
toLowerCase() toUpperCase(); toLocalLowerCase() toLocalUpperCase();
# 字符串的模式匹配
书P126-130