http://www.fzs8.net/Java/JavaScript/2007-05-25/4093.html The search() method is used to search a string for a specified value. Note:?search() is case sensitive. Note:?The search() method returns the position of the specified value in the string. If no match was found it returns -1. In the following example we will search for the word "W3Schools": The output of the code above will be: Note:?In the following example the word "w3schools" will not be found (because the search() method is case sensitive): The output of the code above will be: In the following example we will perform a case-insensitive search: The output of the code above will be:转自:
定义与用法
search()方法用于从字符串中寻找指定值的位置Syntax
语法
stringObject.search(searchstring)
Parameter
参数
Description
注释
searchstring
所寻找的字符串Required. The value to search for in a string. To perform a case-insensitive search add an 'i' flag
必选项。所要寻找匹配的字符串。要进行模糊匹配添加一个”i“标记
Tips and Notes
注意
注意:search()是一个精确匹配
注意:search()方法返回的是指定字符串在字符串中的位置,如果没有匹配字符串则返回 -1
Example 1 - Standard Search
实例1 - 标准查找
在下面的例中,我们将查找”test“:
<script type="text/javascript">
var str="欢迎来到test"
document.write(str.search(/test/))
</script>
输出结果为:
4
注意:在下面的例子中将无法找到"test"(search()方法是精确匹配的)
<script type="text/javascript">
var str="欢迎来到test"
document.write(str.search(/W3pop/))
</script>
返回结果为:
-1
Example 2 - Case-insensitive Search
实例 2 - 模糊查找
在下面的例子中,我们将演示一个模糊查找:
<script type="text/javascript">
var str="欢迎来到test"
document.write(str.search(/W3pop/i))
</script>
返回的结果为:
4
详细解决方案
search步骤
热度:288 发布时间:2012-11-10 10:48:51.0
相关解决方案
- 关于-blank,parent,search,self,top的设置,该如何解决
- 再次提问:对路径“E:\小弟我的文档\Visual Studio 2005\WebSites\Search\crawled\segments”的访问被拒绝
- 一个关于google search api的有关问题,
- 彻底剔除BabylonToolbar http://isearch.claro-search.com
- Head First Search Engine&1&Web Crawlers&bit地图
- jqGrid:6、 search
- Slash to Search―-更高速地搜索
- Web开发课程12-Hibernate Search
- Android怎么调用Google Web Search
- Google Local Search API ,本地map搜索
- 哪位兄弟有Google Soap Search API的开发KEY,毕设急用,该如何处理
- hibernate.search 能的请进来
- hibernate search + 庖丁 不能生成索引文件!该如何处理
- Search for a range寻觅上下界-Leetcode
- eclipse导入项目时,付出提示 select a directory to search for existing Eclipse projects
- m2eclipse:Network connection problems encountered during search
- list = Employee.search("");这句什么意思啊。懂的人帮忙见见啊
- search bar和tableview结合的有关问题
- 如何才能实现iphone search bar style
- SQL Server FullText Search(MSSQLSERVER),该怎么处理
- 请教:sql server fulltext Search 是什么服务
- windbg symbol search path批改不了
- like ‘%” $search "%'‘%” 什么意思?该怎么处理
- like ‘%” $search "%'‘%” 什么意思?解决思路
- 怎么在Android Quick Search Box中添加自己的app,按照小弟我的意愿去Search(转载)
- Sharepoint2013 search service中又组件状态显示成黄色感叹号,怎么解决
- 修复SharePoint 2013 Search 拓扑异常
- sharepoint2010 search service突然不好使了,麻烦帮看看什么有关问题
- 用客戶端在SP2013搜寻, search result 的 icon全不見了
- 新手,求大侠们指点。配置 Search Service 应用程序期间遇到异常