Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
{との間の文字を削除したいのですが}。
{
}
例 :
input_string = "i like apple {nobody knows}";
期待される結果 :
"i like aple"
使用できます
var out = input_string.replace(/{[^}]*}/,'')
複数のオカレンスを削除する場合は、
var out = input_string.replace(/{[^}]*}/g,'')
/*との間のものを削除するには*/、これが機能するはずです:
/*
*/
var out = input_string.replace(/(?!<\")\/\*[^\*]+\*\/(?!\")/g,'')