Tagged Questions

6
votes
4answers
2k views

How to format a string to camel case in XSLT?

I'm trying to format strings in XSLT that needs to be in camel case to be used appropriately for the application I'm working with. For example: this_text would become ThisText this_long_text would ...
3
votes
3answers
165 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 convention? I know ...
2
votes
1answer
456 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 complicated. My ...
0
votes
4answers
519 views

MySQL: Cant 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 change my tables in MySQL. But neither phpmyadmin, nore SQL Manager 2005 for MySQL will ...