Я хочу перетворити наступний рядок на наданий вихід.
Input: "\\test\red\bob\fred\new"
Output: "testredbobfrednew"
Я не знайшов ні одного рішення , яке буде обробляти спеціальні символи , такі як \r
, \n
, \b
і т.д.
В основному я просто хочу позбутися всього, що не буквено-цифрове. Ось що я спробував ...
Attempt 1: "\\test\red\bob\fred\new".replace(/[_\W]+/g, "");
Output 1: "testedobredew"
Attempt 2: "\\test\red\bob\fred\new".replace(/['`~!@#$%^&*()_|+-=?;:'",.<>\{\}\[\]\\\/]/gi, "");
Output 2: "testedobred [newline] ew"
Attempt 3: "\\test\red\bob\fred\new".replace(/[^a-zA-Z0-9]/, "");
Output 3: "testedobred [newline] ew"
Attempt 4: "\\test\red\bob\fred\new".replace(/[^a-z0-9\s]/gi, '');
Output 4: "testedobred [newline] ew"
Ще одна спроба з декількома кроками
function cleanID(id) {
id = id.toUpperCase();
id = id.replace( /\t/ , "T");
id = id.replace( /\n/ , "N");
id = id.replace( /\r/ , "R");
id = id.replace( /\b/ , "B");
id = id.replace( /\f/ , "F");
return id.replace( /[^a-zA-Z0-9]/ , "");
}
з результатами
Attempt 1: cleanID("\\test\red\bob\fred\new");
Output 1: "BTESTREDOBFREDNEW"
Будь-яка допомога буде вдячна.
Робоче рішення:
Final Attempt 1: return JSON.stringify("\\test\red\bob\fred\new").replace( /\W/g , '');
Output 1: "testredbobfrednew"
var Input = "\\test\red\bob\fred\new"
ця рядок не містить "червоного", тому ваша перша спроба правильна, чи ви протестуєте на літтералі "\\\\test\\red\\bob\\fred\\new"
?
/[^\w\s]+/gi
спробуйте це.