2009年5月27日 星期三

計算符合正規表達式的字串有多少,是哪些?

JavaScript equivalent to preg_match

var txt = 'asd asd lfhaf';
txt += ' fklakdfh sfsj';
var matches = txt.match(/<[^<]+>/g);
for (i in matches) {
  alert(i + ' : ' + matches[i]);
}