Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Casing issue in ASP.NET

Status
Not open for further replies.

thakral

Technical User
Sep 6, 2002
16
TH
Hi all

just An EXAMPLE ---> just an example.
just An EXAMPLE ---> JUST AN EXAMPLE.

There are helper functions to convert cases to Upper and to Lower (above) but is there any class in ASP. NET than can help convert text to Camel casing ??

e.g. just An EXAMPLE ---> Just An Example ?

Thanks.
 
Actually in "camelCase", the first word is not captialized and it is used (usually) only when words are run together. You want "Proper Casing". It is a VB.Net function, not a native .Net function.

ProperCaseStr = StrConv(myStr, VbStrConv.UpperCase)



Forms/Controls Resizing/Tabbing
Compare Code
Generate Sort Class in VB
Check To MS)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top