สมมติว่าต่อไปนี้เป็นสตริงที่มีเครื่องหมายจุลภาคและช่องว่าง −
var sentences = " John , David , Bob , Mike, Carol ";
หากต้องการแยกประโยคด้วยเครื่องหมายจุลภาค ให้ใช้ split() หากต้องการลบพื้นที่โดยรอบ ให้ใช้ trim()
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
var sentences = " John , David , Bob , Mike, Carol "; console.log("The value=" + sentences); var result = sentences.split(",").map(function (value) { return value.trim(); }); console.log("After modifying the value=") console.log(result);
ในการรันโปรแกรมข้างต้น ให้ใช้คำสั่งต่อไปนี้ −
node fileName.js.
ที่นี่ ชื่อไฟล์ของฉันคือ demo235.js
ผลลัพธ์
ผลลัพธ์จะเป็นดังนี้ −
PS C:\Users\Amit\javascript-code> node demo235.js The value= John , David , Bob , Mike, Carol After modifying the value= [ 'John', 'David', 'Bob', 'Mike', 'Carol' ]