Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
9answers
3k 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 welcome. Cheers!
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 ...
4
votes
3answers
272 views

Convert text in PascalCase

Is it possible to convert text from a table column in SQL Server to PascalCase only using a proper SQL code? TABLE DEFINITION ---------------------- ID int CITTA varchar(50) PROV varchar(50) ...
3
votes
3answers
163 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
3answers
72 views

Why Hashtable is not PascalCase?

I strongly try to follow general rules in coding styles. But when i look at .NET, i see that some of classes doesn't match PascalCasing rules. One of them is Hashtable and the other one which i ...
2
votes
1answer
450 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 ...
1
vote
5answers
175 views

Pascal case edge case

Pascal case now: is it "Nontaxable", or "NonTaxable"?
0
votes
2answers
56 views

Pascal Case in C# properties

Which one do you choose and why: public class User { public long UserID { get; set; } } public class User { public long UserId { get; set; } } And also as parameters: public void ...
0
votes
1answer
47 views

How to Edit Eclipse' Naming Convention

Question is simple: how to edit naming convention of Eclipse? I have two specific issues: I want to use Pascal Naming Convention instead of camel for fields, such as MyField instead of myField. I ...
0
votes
4answers
482 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 ...
0
votes
1answer
416 views

Entity framework: Best practice for case (as in pascal-case) in database tables/columns

In C# I always use PascalCase for properties (best practice, right?), for databases i always use lowercase for tables and columnnames (best practice, right?) When I generate classes from tables using ...