2
votes
3answers
48 views
The correct case&format of variable and methods and for Python
So I know some languages have expected conventions.
PHP - underscore_case() [for the most part, lolo]
Java - camelCase()
C# - PascalCase()
etc.
What's the "Pythonic" naming c …
14
votes
10answers
1k views
.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 code in VB.net is preferred but C# is also welco …
1
vote
1answer
129 views
Convert Pascal-cased setter to an underscore-separated variable name
This is not as simple as it seems. Most of you are likely thinking of the regex /([A-Z])/_$1/ like I have found all over the Internet, but my particular situation is slightly more …
1
vote
5answers
91 views
Pascal case edge case
Pascal case now: is it "Nontaxable", or "NonTaxable"?
