实例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> </body> <script> var str = new String('iloveyoubaby'); //alert(typeof str); //match() 如果能匹配到返回的是匹配的字符串如果匹配不到返回null //\w \s \d ? * + ^ $ document.write('match:找到一个或多个正则(字符串)表达式匹配:'+str.match(/a/)+'<br/>'); //indexOf 如果有显示当前索引值 如果没有则返回-1 document.write('indexOf:返回一个字符串第一个出现的位置的索引值(索引从0开始):'+str.indexOf('w')+'<br/>'); //lastIndexOf 如果有显示当前索引值 如果没有则返回-1 document.write('lastIndexOf():返回字符串最后一次出现的位置索引值(索引从0 开始):'+str.lastIndexOf('w')+'<br/>'); document.write('replace():'+str.replace('i','a')+'<br/>'); //匹配和正则表达式的字符串符合的内容 如果能匹配返回当前字符串所在的索引位置 如果匹配不到返回 -1 document.write('search():'+str.search(/w/)+'<br/>'); //从哪个位置开始截取到哪个位置 document.write('slice:截取字符串'+str.slice(2,5)+'<br/>'); //从哪个位置开始截取 截取多少个 document.write('substr:截取字符串'+str.substr(2,5)+'<br/>'); </script> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例