キャメルケース形式の単一の文字列を受け取り、それをスネークケース形式の文字列に変換する関数を作成します。
// 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 中国語 Web サイトの他の関連記事を参照してください。