ฉันต้องการแปลงสตริงต่อไปนี้เป็นเอาต์พุตที่จัดเตรียมไว้
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
ลองนี้