Top "Pascalcasing" questions

Pascal case is a language-independent naming convention in which each word of an identifier name begins with a capital letter, such as CustomerName, CustomerId, etc.

JSON Naming Convention (snake_case, camelCase or PascalCase)

Is there a standard on JSON naming?I see most examples using all lower case separated by underscore, aka snake_…

json camelcasing pascalcasing snakecasing
How to convert PascalCase to pascal_case?

If I had: $string = "PascalCase"; I need "pascal_case" Does PHP offer a function for this purpose?

php string pascalcasing snakecasing
Built-in function to capitalise the first letter of each word

I don't want to create a custom function for that if such function already exists in SQL Server. Input string: …

sql sql-server-2008 pascalcasing
How do I convert CamelCase into human-readable names in Java?

I'd like to write a method that converts CamelCase into a human-readable name. Here's the test case: public void testSplitCamelCase() { …

java regex string pascalcasing humanize
How can I convert text to Pascal case?

I have a variable name, say "WARD_VS_VITAL_SIGNS", and I want to convert it to Pascal case format: "…

c# pascalcasing case-conversion
Regex for PascalCased words (aka camelCased with leading uppercase letter)

How do I find all PascalCased words in a document with a regular expression? If you don't know the word …

regex search camelcasing pascalcasing
.NET - How can you split a "caps" delimited string into an array?

How do I go from this string: "ThisIsMyCapsDelimitedString" ...to this string: "This Is My Caps Delimited String" Fewest lines of …

.net regex algorithm string pascalcasing
TypeScript - Use PascalCasing or camelCasing for module names?

I'm wondering if I should use PascalCasing or camelCasing for my modules names, so far I've always used PascalCasing, i.…

typescript camelcasing pascalcasing
How to use Pascal Casing and Camel Casing for Short Acronyms in C#?

A short acronym is like ID or DB which has only 2 characters. How to name these when pascal casing (for …

c# coding-style naming-conventions camelcasing pascalcasing
MySQL: Can't give tables a name in Upper Camel Case (Pascal Case)

I read that it is best practise to have table names in Pascal Case (ThisIsMyTableName). Therefor I would like to …

mysql naming-conventions camelcasing pascalcasing