Tagged Questions

1
vote
4answers
50 views

Convert typed-in Text to lowercase

I've got an index.jsp with [snip] <% String name = request.getParameter("name"); String pass = request.getParameter("pass"); String globalname = "webeng"; String glob …
0
votes
1answer
61 views

Problem with upper-case and lower-case xpath functions in selenium IDE

Hi, I am trying to get a xpath query using the xpath function lower-case or uppper-case, but they seem to not work in selenium (where I test my xpath before I apply it). Example t …
2
votes
1answer
60 views

Sentence normalizer in php?

I'm running a site that allows users to make comments, and most of them are highly uneducated and cannot use proper punctuation, capitalization, and etc. I'm looking for some sor …
2
votes
4answers
244 views

Converting wide char string to lowercase in C++

How do I convert a wchar_t string from upper case to lower case in C++? The string contains a mixture of Japanese, Chinese, German and Greek characters. I thought about using to …
0
votes
2answers
103 views

Using C# to SELECT against Excel, how do I make it case-INsensitive?

This SELECT finds Kelly as expected: select [First Name], [Last Name], Phone from [Data$] where [First Name] like "%Kelly%" In the Excel spreadsheet, the first name is "Kelly" wi …
5
votes
4answers
228 views

Normalize the case of array keys in PHP

Is there a "better" way (built-in function, better algorithm) to normalize the case of all the keys in a PHP array? Looping though and creating a new array works $new = array(); f …
2
votes
7answers
239 views

XML: Case conventions on element names?

Is there any formal recommendations on element casing in xml? i know xhtml uses lowercase element names (as opposed to html which cononically uses UPPERCASE) But i'm talking abou …
0
votes
6answers
308 views

How does one convert a string to lowercase in ruby

I know this is simple, but how do you take a string and convert it to lower case, or upper case in ruby.
2
votes
3answers
216 views

Unicode lowercase characters?

I read up someplace, that there are characters other than A-Z that have a lowercase equivalent, in Unicode. Which could these be, and why would any other character need an upper an …
1
vote
1answer
129 views

How do you convert character case in UNIX accurately? (assuming i18N)

I'm trying to get a feel for how to manipulate characters and character sets in UNIX accurately given the existance of differing locales - and doing so without requiring special to …
0
votes
4answers
757 views

regex implementation to replace group with its lowercase version

Is there any implementation of regex that allow to replace group in regex with lowercase version of it?
1
vote
1answer
184 views

Any way to get SharePoint to STOP converting attachment file names to all lower case on inbound emails?

I have a document library that is successfully receiving and saving attachments from inbound emails. The problem is that it is taking my nice, mixed-case file names and converting …
2
votes
4answers
295 views

Does String.ToLower() always allocate memory?

Does String.ToLower() return the same reference (e.g. without allocating any new memory) if all the characters are already lower-case? Memory allocation is cheap, but running a qu …
1
vote
2answers
92 views

WinForms/WebForms controls’ default case musings

Why is WinForms default name for controls starts with lowercase, and why uppercase for WebForms? What's the likely rationale for this?
0
votes
3answers
1k views

SQL changing a value to upper or lower case

How do you make a field in a sql select statement all upper or lower case? Example: select firstname from Person How do I make firstname always return upper case and likewise al …

1 2 next
15 30 50 per page