1、获取字符串长度
var mystr="Hello World!"; var myl=mystr.length;
2、字符串大小写转换
var mystr="Hello world!"; var mynum=mystr.toUpperCase();
以上代码执行后,mynum 的值是:HELLO WORLD!
3、返回指定位置的字符
<script type="text/javascript"> var mystr="I love JavaScript!" document.write(mystr.charAt(2)); </script>
stringObject.indexOf(substring, startpos)
5、字符串分割
split() 方法将字符串分割为字符串数组,并返回此数组。
stringObject.split(separator,limit)
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>无标题文档</title> <script type="text/javascript"> var mystr="86-010-85468578"; document.write( mystr.split("-") + "<br />"); document.write( mystr.split("") + "<br />"); document.write(mystr.split("",3) ); </script> </head> <body> </body> </html>
86,010,85468578
8,6,-,0,1,0,-,8,5,4,6,8,5,7,8
8,6,-
6、提取子串
substring() 方法用于提取字符串中介于两个指定下标之间的字符。
stringObject.substring(starPos,stopPos)
7、提取指定长度的子串
substr() 方法从字符串中提取从 startPos位置开始的指定数目的字符串。
stringObject.substr(startPos,length)