JavaScript——字符串

一、charAt





字符串







二、charCodeAt





字符串







三、indexOf





字符串







四、lastIndexOf





字符串







五、length





字符串







六、match





字符串







七、replace





字符串







八、截取类(slice、substr 、substring)区别

slice 不取结束位置 把负数变为倒数第n个
substring 不取结束位置 把负数变为0,取全部字符
substr 取结束位置 把负数变为倒数第n个


字符串







九、toLowerCase()大写变小写 toUpperCase()小写变大写





字符串







你可能感兴趣的:(JavaScript——字符串)