如何从字符串中替换重复的“斜线”?
例如,
str = '/estate//info//';
alert(fragment.replace(/\/\/+/, "/"));
结果,
/estate/info//
但我追求,
/estate/info/
如何从字符串中替换重复的“斜线”?
例如,
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 '/'
试试这个,
str = '/estate//info//';
alert(fragment.replaceAll("//", "/"));