다음 문자열을 제공된 출력으로 변환하고 싶습니다.
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
이 시도.