-6
大家好,我需要解析我的textarea才能得到所有單詞(後跟空格),它有一個$
作爲前綴。正則表達式得到單詞
例如,我有follwing文本:
my name is $Ahmad and I wish $peace to all the $world
現在我需要extraxt $Ahmad
和$peace
,而不是$world
(因爲它沒有空格後面)。
大家好,我需要解析我的textarea才能得到所有單詞(後跟空格),它有一個$
作爲前綴。正則表達式得到單詞
例如,我有follwing文本:
my name is $Ahmad and I wish $peace to all the $world
現在我需要extraxt $Ahmad
和$peace
,而不是$world
(因爲它沒有空格後面)。
var matches = str.match(/\B\$[^ ]+(?=)/g);
這裏的小提琴:http://jsfiddle.net/fpjZX/
附:假設你的意思是JavaScript ...
是它的JavaScript –
[你有什麼嘗試?](http://whathaveyoutried.com)如果你不打算表現出任何努力,爲什麼我應該?另外,你的意思是Java或JavaScript?兩者不一樣。 –
我做了很多嘗試和它的JavaScript 這裏是我的嘗試 \ $ [a-z0-9&-_] + []但它不工作 –