Posted in Javascript onJune 06, 2015
此方法执行搜索正则表达式,String对象之间的匹配。
语法
string.search(regexp);
下面是参数的详细信息:
- regexp : 正则表达式对象。如果非RegExp对象obj传递,它是隐式通过使用new RegExp(obj) 转换为RegExp
返回值:
- 如果成功的话,搜索将返回字符串内的正则表达式的索引。否则,它返回 -1.
例子:
<html> <head> <title>JavaScript String search() Method</title> </head> <body> <script type="text/javascript"> var re = /apples/gi; var str = "Apples are round, and apples are juicy."; if ( str.search(re) == -1 ){ document.write("Does not contain Apples" ); }else{ document.write("Contains Apples" ); } </script> </body> </html>
这将产生以下结果:
Contains Apples
简介JavaScript中search()方法的使用
- Author -
goldensun声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@