search方法
http://www.fzs8.net/Java/JavaScript/2007-05-25/4093.html
The search() method is used to search a string for a specified value.
search()方法用于从字符串中寻找指定值的位置
stringObject.search(searchstring)
Note:?search() is case sensitive.
注意:search()是一个精确匹配
Note:?The search() method returns the position of the specified value in the string. If no match was found it returns -1.
注意:search()方法返回的是指定字符串在字符串中的位置,如果没有匹配字符串则返回 -1
In the following example we will search for the word "W3Schools":
在下面的例中,我们将查找”test“:
<script type="text/javascript">
var str="欢迎来到test"document.write(str.search(/test/))
</script>
The output of the code above will be:
输出结果为:
4
Note:?In the following example the word "w3schools" will not be found (because the search() method is case sensitive):
注意:在下面的例子中将无法找到"test"(search()方法是精确匹配的)
<script type="text/javascript">
var str="欢迎来到test"document.write(str.search(/W3pop/))
</script>
The output of the code above will be:
返回结果为:
-1
In the following example we will perform a case-insensitive search:
在下面的例子中,我们将演示一个模糊查找:
<script type="text/javascript">
var str="欢迎来到test"document.write(str.search(/W3pop/i))
</script>
The output of the code above will be:
返回的结果为:
4