如何从字符串中替换重复的“斜杠”?

例如,

str = '/estate//info//';
alert(fragment.replace(/\/\/+/, "/"));

结果,
/estate/info//

但是我在追求
/estate/info/

最佳答案

试试这个:

str = '/estate//info//';
alert(str.replace(/\/\/+/g, "/"));
// where 'g' will do the global search and replace it with single '/'

08-19 19:31