JavaScript RegExp source 属性
JavaScript RegExp source 属性用于返回模式匹配所用的文本
浏览器支持
支持 | 支持 | 支持 | 支持 | 支持 |
语法
RegExpObject.source
范例
返回与正则模式匹配的文本
var str="Visit Twle"; var patt1=/Tw/g; document.write("The text of the RegExp is: " + patt1.source);
JavaScript RegExp source 属性用于返回模式匹配所用的文本
支持 | 支持 | 支持 | 支持 | 支持 |
RegExpObject.source
返回与正则模式匹配的文本
var str="Visit Twle"; var patt1=/Tw/g; document.write("The text of the RegExp is: " + patt1.source);
♥ 简单教程,简单编程 - IT 入门首选站
Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.