We introduce a service that creates camelCase variables based on DB columns (snake_case).
Use it to create piece codes for each programming language.
The information you enter will not be transmitted or stored on the Olotia server.
Examples of fragment code creation for each programming language
Input table column information.
Copy and enter table column information separated by tabs.
Input Plain text
Input JSON
If you select menus and options for each language/function, you can create various pieces of code.
Java Variable
public int seq = 0; // Sequence
public String userId = null; // User identification
public String userEmail = null; // User E-mail
public boolean delFg = false; // Delete flag
public LocalDateTime createDate = null; // Date of creation
let seq : number = 0 ; // Sequence
let userId : string = '' ; // User identification
let userEmail : string = '' ; // User E-mail
let delFg : boolean = false; // Delete flag
let createDate: string = '' ; // Date of creation
SQL Select
SELECT /* */
seq,
user_id,
user_email,
del_fg,
create_date
FROM olosia_com
WHERE 1 = 1
AND seq = :seq
AND user_id = :userId
AND user_email = :userEmail
AND del_fg = :delFg
AND create_date = :createDate
String conversion examples by type
PascalCase
Transform into a string of capitalized words without separators.
"test string" => "TestString"
camelCase
Transform into a string with the separator denoted by the next word capitalized.
"test string" => "testString"
snake_case
Transform into a lower case string with underscores between words.
"test string" => "test_string"
CONSTANT_CASE
Transform into upper case string with an underscore between words.
"test string" => "TEST_STRING"
param-case
Transform into a lower cased string with dashes between words.
"test string" => "test-string"
Header-Case
Transform into a dash separated string of capitalized words.
"test string" => "Test-String"
dot.case
Transform into a lower case string with a period between words.
"test string" => "test.string"
path/case
Transform into a lower case string with slashes between words.
"test string" => "test/string"
no case
Transform into a lower cased string with spaces between words.
"testString" => "test string"
Capital Case
Transform into a space separated string with each word capitalized.
"test string" => "Test String"
Sentence Case
Transform into a lower case with spaces between words, then capitalize the string.
"testString" => "Test string"
lower case
Transforms the string to lower case.
"TEST STRING" => "test string"
UPPER CASE
Transforms the string to upper case.
"test string" => "TEST STRING"
lOWER cASE fIRST
Transforms the string with the first character in lower cased.
"TEST" => "tEST"
Upper Case First
Transforms the string with the first character in upper cased.
"test" => "Test"
sPoNGe CaSE
Transform into a string with random capitalization applied.
"Test String" => "tEst stRINg"
sWAP cASE
Transform a string by swapping every character from upper to lower case, or lower to upper case.
"Test String" => "tEST sTRING"
Title Case
Transform a string into title case following English rules.