Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

สตริงยัติภังค์เป็นสตริง camelCase ใน JavaScript


สมมติว่าเรามีสตริงที่มีคำคั่นด้วยยัติภังค์เช่นนี้ -

const str = 'this-is-an-example';

เราจำเป็นต้องเขียนฟังก์ชัน JavaScript ที่รับสตริงดังกล่าวและแปลงเป็นสตริง camelCase

สำหรับสตริงข้างต้น เอาต์พุตควรเป็น −

const output = 'thisIsAnExample';

รหัสสำหรับสิ่งนี้จะเป็น −

const str = 'this-is-an-example';
const changeToCamel = str => {
   let newStr = '';
   newStr = str
   .split('-')
   .map((el, ind) => {
      return ind && el.length ? el[0].toUpperCase() + el.substring(1)
      : el;
   })
   .join('');
   return newStr;
};
console.log(changeToCamel(str));

ต่อไปนี้เป็นผลลัพธ์บนคอนโซล -

thisIsAnExample