Last active
March 3, 2024 06:40
-
-
Save cmstead/7ad64539d13dfdb5a2591bc3be3c8eeb to your computer and use it in GitHub Desktop.
VS Code snippet transform: convert camel case to Pascal case or vice versa
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// If you want to convert a PascalCase variable to camelCase, you can do the following: | |
// Where `n` is the tab stop you want to reference | |
${n/^(.)(.*)$/${1:/downcase}${2}/} | |
// Example: ${1:This is my original} => ${1/^(.)(.*)$/${1:/downcase}${2}/} | |
// If you want to convert a camelCase variable to PascalCase, you can do the following: | |
// Where `n` is the tab stop you want to reference | |
${n/^(.)(.*)$/${1:/upcase}${2}/} | |
// Example: ${1:This is my original} => ${1/^(.)(.*)$/${1:/upcase}${2}/} | |
thank you
Answer to vscode snippet transform file name in the snippet to camel case or pascal case variable
given file_name_foo.ext
file
${TM_FILENAME_BASE/^(.*)_foo$/${1:/pascalcase}/} ==> FileName
${TM_FILENAME_BASE/^(.*)_foo$/${1}/} ==> file_name
${TM_FILENAME_BASE/^(.*)_foo$/${1:/upcase}/} ==> FILE_NAME
:/camelcase
works as well.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Seems like there is /camelcase and /pascalcase transform, which could make everything simpler.
But this acts like it's meant to convert snake_case to camelCase, not PascalCase to camelCase.
There is also /capitalize transform, which can be used for converting camelCase to PascalCase, but there is no opposite transform.
Therefore these do give expected result,
But these do not give expected result.
What a mess.