大家好,我需要解析我的 textarea 以获取所有以a作为前缀的单词(后跟空格) 。$
例如,我有以下文本:
my name is $Ahmad and I wish $peace to all the $world
现在我需要提取$Ahmad
and $peace
,但不是$world
(因为它后面没有空格)。
大家好,我需要解析我的 textarea 以获取所有以a作为前缀的单词(后跟空格) 。$
例如,我有以下文本:
my name is $Ahmad and I wish $peace to all the $world
现在我需要提取$Ahmad
and $peace
,但不是$world
(因为它后面没有空格)。
var matches = str.match(/\B\$[^ ]+(?= )/g);
这是小提琴:http: //jsfiddle.net/fpjZX/
PS假设你的意思是JavaScript ...