camelCase 형식의 단일 문자열을 가져와 이를 snake_case 형식의 문자열로 변환하는 함수를 작성하세요.
// A function camelToCase that takes a string (text) as the parameter. function camelToCase(text) { // Transform each uppercase letter (character) based on its position. function upperToUnderScoreLower(character, position) { // If the letter isn't the first character, add an underscore and convert it to lowercase. return (position > 0 && "_") + match.toLowerCase(); } // Replace all uppercase letters in (text) by calling the upperToUnderScoreLower function. return text.replace(/[A-Z]/g, upperToUnderScoreLower); } console.log(camelToCase("camelToCase"));
> camel_to_case
위 내용은 JavaScript에서 camelToCase를 snake_case로 변환의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!