最新的Web开发教程
 

JavaScript source Property

<JavaScript的RegExp对象

返回正则表达式模式的文本:

var str = "Visit w3ii";
var patt1 = /W3S/g;
var res = "The text of the RegExp is: " + patt1.source;

资源的结果将是:

The text of the RegExp is: W3S
试一试»

定义和用法

源属性返回正则表达式模式的文本。


浏览器支持

属性
source

句法

RegExpObject .source

返回值

类型 描述
String 正规表达式的文本

技术细节

JavaScript的版本: 1.2

<JavaScript的RegExp对象