สมมติว่าเรามีสตริงต่อไปนี้ที่มีเครื่องหมายทวิภาค -
var values="This is:the first program in JavaScript:After that I will do Data Structure program";
เราจำเป็นต้องได้รับสตริงย่อยระหว่างโคลอน ผลลัพธ์ควรเป็น −
the first program in JavaScript
สำหรับสิ่งนี้ ให้ใช้แนวคิดของ split()
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
var values="This is:the first program in JavaScript:After that I will do Data Structure program"; var result=[]; result=values.split(":"); console.log(result[1]);
ในการรันโปรแกรมข้างต้น คุณต้องใช้คำสั่งต่อไปนี้ -
node fileName.js.
ที่นี่ ชื่อไฟล์ของฉันคือ demo273.js
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้บนคอนโซล -
PS C:\Users\Amit\javascript-code> node demo273.js the first program in JavaScript