主頁 > 知識庫 > js中exec、test、match、search、replace、split用法

js中exec、test、match、search、replace、split用法

熱門標(biāo)簽:山東外呼系統(tǒng)聯(lián)系方式 地圖標(biāo)注店鋪地圖標(biāo)注酒店 浙江營銷外呼系統(tǒng)有哪些 惠安地圖標(biāo)注 哈爾濱公司外呼系統(tǒng)代理 上海銷售電銷機器人軟件 遼寧秒客來電話機器人 淄博市張店區(qū)地圖標(biāo)注 自己做的電銷機器人
exec:對string進行正則處理,并返回匹配結(jié)果.array[0]為原字符串,array[i]為匹配在整個被搜索字符串中的位置。
test:測試string是否包含有匹配結(jié)果,包含返回true,不包含返回false。
match(pattern) :根據(jù)pattern進行正則匹配,如果匹配到,返回匹配結(jié)果,如匹配不到返回null
search(pattern) :根據(jù)pattern進行正則匹配,如果匹配到一個結(jié)果,則返回它的索引數(shù);否則返回-1
replace(pattern,replacement) :根據(jù)pattern進行正則匹配,把匹配結(jié)果替換為replacement
split(pattern) :根據(jù)pattern進行正則分割,返回一個分割的數(shù)組
實例:
復(fù)制代碼 代碼如下:

function checkForm() {
var u = document.form_name.check.value;
var s = /^[-a-zA-Z0-9_]+(\.[-a-zA-Z0-9_]+)*@[-a-zA-Z0-9_]+(\.[-a-zA-Z0-9_]+)*$/;
var a = s.exec(u);
var a = s.test(u);
var a = u.match(s);
var a = u.search(s);
alert(a);
}


replace

最簡單的算是能力就是簡單的字符替換。示例代碼如下:
復(fù)制代碼 代碼如下:

var u = "javascript is a good script language";
//在此我想將字母a替換成字母A
var s = /a/g;
var a = u.replace(s,"A");
/script>

split
復(fù)制代碼 代碼如下:

script type="text/javascript">
var str="How are you doing today?"
document.write(str.split(" ") + "br />")
document.write(str.split("") + "br />")
document.write(str.split(" ",3))
/script>

輸出結(jié)果為:
How,are,you,doing,today?
H,o,w, ,a,r,e, ,y,o,u, ,d,o,i,n,g, ,t,o,d,a,y,?
How,are,you
您可能感興趣的文章:
  • js正則函數(shù)match、exec、test、search、replace、split使用介紹集合
  • js正則表達式之match函數(shù)講解
  • JS正則中的match與exec使用說明
  • javascript中match函數(shù)的用法小結(jié)
  • 簡介JavaScript中charAt()方法的使用
  • js charAt的使用示例
  • JavaScript charCodeAt方法入門實例(用于取得指定位置字符的Unicode編碼)
  • js Map List 遍歷使用示例
  • JS Map 和 List 的簡單實現(xiàn)代碼
  • js實現(xiàn)的map方法示例代碼
  • js正則表達式之search方法講解
  • JS常見疑難點分析之match,charAt,charCodeAt,map,search用法分析

標(biāo)簽:銅川 宣城 無錫 西安 長沙 綿陽 泰州 重慶

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《js中exec、test、match、search、replace、split用法》,本文關(guān)鍵詞  中,exec,test,match,search,replace,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《js中exec、test、match、search、replace、split用法》相關(guān)的同類信息!
  • 本頁收集關(guān)于js中exec、test、match、search、replace、split用法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章