.wxs寫法
var content = '';
var rep1 = getregexp('\?id=(.*)','i');
var rep2 = getregexp('id=(.*)','i');
var rep3 = getregexp('id=(.*)','i');
var code1 = content.match(rep1)[1];//取 ?id=後面所有字串
var code2 = content.match(rep2)[1];//取 id=後面所有字串
var code3 = content.match(rep3)[0]; //取 包含 id=及後面的字串
console.log('?id= 後的內容為: '+code1);
console.log('id= 後的內容為: '+code2);
console.log('包含 id= 的所有內容為: '+code3);
.js寫法
var content = '';
var code1 = content.match(/\?id=(.*)/)[1];//取 ?id=後面所有字串
var code2 = content.match(/id=(.*)/)[1];//取 id=後面所有字串
var code3 = content.match(/id=(.*)/)[0]; //取 包含 id=及後面的字串
console.log('?id= 後的內容為: '+code1);
console.log('id= 後的內容為: '+code2);
console.log('包含 id= 的所有內容為: '+code3);
微信小程式正規表示式擷取 微信小程式之正規表示式
手機號碼驗證 if 13 0 9 14 0 9 15 0 9 17 0 9 18 0 9 d test 你要驗證的手機號 test 你要驗證的郵箱 身份證驗證 if d d d d x x test 你要驗證的身份證 可借鑑表示式 驗證數字的正規表示式集 驗證數字 0 9 驗證n位的數字 d 驗證至...
js 字串擷取指定字元
let str hello world 如擷取hello indexof,查詢字串,有返回下標,沒有返回 1 let index str.indexof hello substring,引數是從哪擷取到哪,不接受負數 let cutout1 str.substring index,index 5 s...
擷取指定字串(指標指向)
問題 如字串 const char bb abcdef dsfads 如何擷取 號以前的字串 abcdef 不錯的回答 char nn abcdef const char bb abcdef dsfads intilen 0 char piterator bb while 1 ilen char p...