2016-04-04 11 views
-1

example-(:smile :)や(:riya :)のパターンに続くいくつかの単語を置き換えるか、 (: 'と' :)、スペースで置き換えられます。例えばJavaScriptでテキスト内のパターンを検索する

This is a demo text (:ritu:) to demonstrate (:money:) what is the problem. 

結果:

This is a demo text to demonstrate what is the problem. 

どのようにJavaScriptでこれを達成するには?

答えて

1

使用str.replace

var str = 'This is a demo text (:ritu:) to demonstrate (:money:) what is the problem.' 
 
alert(str.replace(/\s?\(:.*?:\)/g, ''))

+0

そんなにありがとう。 –

関連する問題