Javascript Method For Changing Snake_case To Pascalcase
I'm looking for a JS method that will turn snake_case into PascalCase while keeping slashes intact. // examples: post -> Post admin_post -> AdminPost admin_post/new -> Adm
Solution 1:
Here's a solution that preserves slashes and converts snake_case to PascalCase like you want.
constsnakeToPascal = (string) => {
returnstring.split("/")
.map(snake => snake.split("_")
.map(substr => substr.charAt(0)
.toUpperCase() +
substr.slice(1))
.join(""))
.join("/");
};
It first splits the input at the '/'
characters to make an array of snake_case strings that need to be transformed. It then splits those strings at the '_'
characters to make an array of substrings. Each substring in this array is then capitalized, and then rejoined into a single PascalCase string. The PascalCase strings are then rejoined by the '/'
characters that separated them.
Solution 2:
PascalCase is similar to camelCase. Just difference of first char.
constsnakeToCamel = str => str.replace( /([-_]\w)/g, g => g[ 1 ].toUpperCase() );
constsnakeToPascal = str => {
let camelCase = snakeToCamel( str );
let pascalCase = camelCase[ 0 ].toUpperCase() + camelCase.substr( 1 );
return pascalCase;
}
console.log( snakeToPascal( "i_call_shop_session" ) );
Input : i_call_shop_session
Output : ICallShopSession
Solution 3:
This should do the trick.
function _snake2Pascal( str ){
str +='';
str = str.split('_');
for(var i=0;i<str.length;i++){
str[i] = str[i].slice(0,1).toUpperCase() + str[i].slice(1,str[i].length);
}
returnstr.join('');
}
edit:
a version that passes all your test cases shown in the OP:
function snake2Pascal( str ){
str +='';
str = str.split('_');
function upper( str ){
returnstr.slice(0,1).toUpperCase() + str.slice(1,str.length);
}
for(var i=0;i<str.length;i++){
var str2 = str[i].split('/');
for(var j=0;j<str2.length;j++){
str2[j] = upper(str2[j]);
}
str[i] = str2.join('');
}
returnstr.join('');
}
Solution 4:
Or something like that:
functionsnake2CamelCase(string) {
return string
.replace(
/_(\w)/g,
($, $1) => $1.toUpperCase()
)
;
}
functionsnake2PascalCase(string) {
let s = snake2CamelCase(string);
return`${s.charAt(0).toUpperCase()}${s.substr(1)}`;
}
[
'something_went_wrong',
'thisIs_my_snakecase'
]
.map(s => ({[s]: snake2PascalCase(s)}))
.forEach((s, i) =>console.log(i, s))
;
Solution 5:
consttoString = (snake_case_str) => {
const newStr = snake_case_str.replace(/([-_][a-z])/gi, ($1) => {
return $1.toUpperCase().replace('-', ' ').replace('_', ' ');
});
let changedStr =
newStr.slice(0, 1).toUpperCase() + newStr.slice(1, newStr.length);
return changedStr;
};
let str = 'first_name';
console.log(toString(str));
Post a Comment for "Javascript Method For Changing Snake_case To Pascalcase"