最新的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對象