当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript match() 方法

JavaScript
JS 介绍
JS 怎样使用
JS 在哪使用
JS 变量
JS If...Else
JS Switch
JS 操作符
JS Popup Boxes
JS 函数
JS For 循环
JS While 循环
JS Break 循环
JS For...In
JS 事件
JS Try...Catch
JS Throw
JS onerror
JS 特殊字符
JS Guidelines
JS 对象介绍

JavaScript match() 方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 380 ::
收藏到网摘: n/a

Definition and Usage
定义与用法

The match() method searches for a specified value in a string.
match()方法用于从字符串中查找指定的值

This method is similar to indexOf() and lastIndexOf(), but it returns the specified value, instead of the position of the string.
本方法类似于indexOf()和lastindexOf(),不同的是它返回的是指定的值,而不是指定值在字符串中的位置。

Syntax
语法

stringObject.match(searchvalue)

Parameter
参数
Description
注释
searchvalue
所要查找的值
Required. Specifies a string value to search for
必选项。指定一个所要查找的值


Tips and Notes
注意

Note: The match() method is case sensitive!
注意:match()方法是精确匹配的

Note: This method returns null if the string value to search for never occurs.
注意:如果字符串中没有可匹配的值,返回null


Example
实例

In this example we will do different searches within a "Hello world!" string:
在本例中,我们将对"Hello world!"字符串进行不同的查找:

<script type="text/javascript">
var str="Hello world!"
document.write(str.match("world") + "<br />")
document.write(str.match("World") + "<br />")
document.write(str.match("worlld") + "<br />")
document.write(str.match("world!"))
</script>

The output of the code above will be:
返回的结果为:

world
null
null
world!


Try-It-Yourself Demos
互动演练

match()
How to use match() to search within a string.
如何用match()在一个字符串内进行查找

评论 (0) All

登陆 | 还没注册?