Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

46
votes
7answers
19k 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.
21
votes
10answers
17k views

How to rename all folders and files to lowercase on Linux?

I have to rename a complete folder tree recursively so that no uppercase letter appears anywhere (it's C++ sourcecode, but that shouldn't matter). Bonus points for ignoring CVS and SVN control ...
6
votes
5answers
1k 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(); foreach( $old as ...
5
votes
3answers
191 views

Unicode characters having asymmetric upper/lower case. Why?

Why do the following three characters have not symmetric toLower, toUpper results /** * Written in the Scala programming language, typed into the Scala REPL. * Results commented accordingly. */ ...
5
votes
1answer
135 views

Rails: How to downcase non-English string?

How could I downcase a non-English string in Ruby on Rails 3 ? str = "Привет" # Russian puts str[0].ord # => 1055 str.downcase! puts str[0].ord # => 1055 (Should be 1087) I want it to ...
5
votes
2answers
2k views

Use Java and RegEx to convert casing in a string

Problem: Turn "my testtext TARGETSTRING my testtext" into "my testtext targetstring my testtext" Perl supports the "\L"-operation which can be used in the replacement-string. The Pattern-Class does ...
5
votes
3answers
883 views

Turkish case conversion in JavaScript

I want to convert strings to lower or upper case in JavaScript in the locale I wanted. I think standard functions like toUpperCase() and toLocaleUpperCase() do not satisfy this need. toLocale ...
4
votes
4answers
99 views

Make first letter uppercase and the rest lowercase in a string

All, I'm trying to insert a last name into a database. I'd like the first letter to be capitalized for the name and if they have use two last names then capitalize the first and second names. So for ...
4
votes
5answers
141 views

Perl, how to lowercase all hash values?

I need to copy a (one-level) hash to a new one, with all values lowercased. Do you know a smart method (just to avoid an ugly foreach... ;-)
4
votes
4answers
973 views

Ruby post title to slug

How should I convert a post title to a slug in Ruby? The title can have any characters, but I only want the slug to allow [a-z0-9-_] (Should it allow any other characters?). So basically: downcase ...
4
votes
3answers
548 views

Python: How to check if a unicode string contains a cased character?

I'm doing a filter wherein I check if a unicode (utf-8 encoding) string contains no uppercase characters (in all languages). It's fine with me if the string doesn't contain any cased character at all. ...
4
votes
1answer
3k views

How to replace uppercase letters to lowercase letters using regex in Eclipse?

I'd like to go through all of my source code files and replace every occurence of k_Xyyy with k_xyyy (switch the first letter after k_ from uppercase to lowercase). I'm using the eclipse dialog to ...
3
votes
1answer
46 views

Using the lowercase function with CSV rows

I'm trying to print all data from a csv in lowercase, but I'm not having any luck. Here's what I have so far: import csv books = csv.reader(open("books.csv","rb")) for row in books: print row ...
3
votes
5answers
240 views

Best way to convert whole file to lowercase in C

I was wondering if theres a realy good (performant) solution how to Convert a whole file to lower Case in C. I use fgetc convert the char to lower case and write it in another temp-file with fputc. At ...
3
votes
6answers
2k views

Javascript - How to capitalize first letter of each word, like a 2-word city?

My JS woks well when the city has one word: cHIcaGO ==> Chicago But when it's san diego ==> San diego How do I make it become San Diego? function convert_case() { ...
3
votes
4answers
1k views

Ruby on Rails uncapitalize first letter

I'm running Rails 2.3.2. How do I convert "Cool" to "cool"? I know "Cool".downcase works, but is there a Ruby/Rails method that does the opposite of capitalize, i.e., uncapitalize or decapitalize?
3
votes
2answers
181 views

Is there a function to find all lower case letters in a character vector?

I just wrote one, but I was wondering if one already exists in R. Here's the function BTW (suggestions for improvement are welcome): set.seed(50) x <- sample(c(letters, LETTERS), 7) is.lower ...
3
votes
1answer
39 views

KRL convert string to lowercase in pre block

Question Is there a way in the pre block of a rule to convert a string to all lower case? Background I have a regular expression that returns parts of a string and sometimes they start with an ...
3
votes
3answers
196 views

What is the standard algorithm for converting unicode characters into lowercase?

I want to know the standard algorithm for converting unicode characters into lowercase as proposed by unicode.org. Also, do most programming languages follow this proposed standard?
3
votes
2answers
4k views

Lowercase conversion in XSL

I have an XML like <emps> <emp id='3432'> <fname>Jack</fname> <lname>Dawson</lname> <emp> <emp id='1122'> <fname>Jack</fname> ...
3
votes
1answer
699 views

Vim: search and replace across multiple lines with conversion to lower case

Here's what I'd like to do, for each one of many files: search for all occurrences of "<a href" then begin block selection select until the first occurrence of ">" convert the entire match to ...
3
votes
4answers
569 views

c - convert a mixed-case string to all lower case

is the best/cleanest way to just do a for loop iterating through each position and call tolower() on it?
3
votes
4answers
299 views

C toLowerCase Function won't work - Access violation

I have a simple function which takes an array of characters as an argument, and converts all the characters to lower case. However, I get a weird access violation error. Here's the code: void ...
3
votes
2answers
793 views

How to add lowercase field to NSURLRequest header field?

I'm getting pretty frustrated figuring out how to add a lowercase header field to an NSMutableURLRequest. NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:[NSURL ...
3
votes
3answers
582 views

Django LowerCaseCharField

We implemented a LowerCaseCharField. We would be happy to hear better implementation suggestions. from django.db.models.fields import CharField class LowerCaseCharField(CharField): """ ...
3
votes
4answers
451 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 quick check on ...
2
votes
1answer
49 views

MySQL LOWER() function not multi-byte safe for the º character?

When I encoding the following character to UTF-8: º I get: º Then with º stored as a field value, I select the field with the LOWER() function and get ⺠I was expecting it to respect that ...
2
votes
5answers
115 views

when using a array of strings in java, convert it to lowercase

I got a one dimensional array of strings in java, in which i want to change all strings to lowercase, to afterwards compare it to the original array so i can have the program check whether there are ...
2
votes
5answers
106 views

Determining the case (upper/lower) of the first letter in a string

In a web application, how do I determine whether the first letter in a given string is upper- or lower-case using JavaScript?
2
votes
1answer
55 views

batch script to copy lowercase file

I have files being uploaded to a folder. I need a batch script to redirect those files to separate folders based on filenames. That's all fine except for two sets of files that have very similar ...
2
votes
4answers
221 views

Permutate a String to upper and lower case

I have a string, "abc". How would a program look like (if possible, in Java) who permute the String? For example: abc ABC Abc aBc abC ABc abC AbC
2
votes
4answers
73 views

What is POPULAR today when it comes to write SQL Queries: UPPER CASE or Lower Case? [closed]

What is POPULAR today when it comes to write SQL Queries: UPPER CASE or Lower Case? And for what specific reason? SELECT * FROM tMyTable Or Select * from tMytable
2
votes
4answers
134 views

Capatalize every other letter…

How would i capitalize every other letter in a string? I know how to convert to lower or upper or the first, etc but not sure how to go about every other. To be clear I've included examples. Also this ...
2
votes
3answers
1k views

Android sort sqlite query results ignoring case

just wondering if theres a way of sorting the results of a query ignoring case. Cause at the moment fields starting with an upper case letter are sorted and put on top of the list and fields starting ...
2
votes
2answers
814 views

how to use ruby/rails to convert all caps to proper first letter cap, rest lower case?

I have a data file of names and address...all of them are upper case. How can I convert it to properly make the first letter upper case, and the rest lower case (except for states, for example)? I ...
2
votes
3answers
220 views

Emacs should set the second character of a word in lower case

In most cases I'm writing german texts. Most words start with an uppercase letter followed by lower case letters. Sometimes I'm typing too fast and also the second letter of a word is typed upper ...
2
votes
2answers
193 views

Making all the characters in a string lowercase in Lua

Here is the thing. I am trying to convert a string in lowercase in Lua, but it's not working. I have done this String = String:lower() but it doesn't like it. I am sure that is the way to do it, ...
2
votes
2answers
2k views

Convert HTML tag to lowercase

I working on an intranet project for IE6 (i know...) and I need to output some HTML code from a div. I use $('#output').text($('#container').html()); But IE6 outputs all the code in uppercase: ...
2
votes
5answers
564 views

What code should be written to accept Lower and Upper case choices?

I'm beginner to c++ and writing a program that accepts user choices and acts according to it...my only problem is when the user enters Uppercase choice...the program treats it as it's a wrong ...
2
votes
3answers
908 views

PHP uppercase to lowercase rewrite optimization?

I am using this PHP code to redirect any form of UPPERCASE in URI's to lowercase. There are three exceptions: if the URI includes either "adminpanel" or "search" there is no redirect, also if it ...
2
votes
4answers
3k 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 towlower... ...
2
votes
3answers
940 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 and lower case?
2
votes
4answers
7k 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?
2
votes
3answers
10k 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 always return lower ...
1
vote
6answers
102 views

Java Program to test if a character is uppercase/lowercase/number/vowel

As I said before, how do I test if the entered character is one of the parameters? I've written this code, but it doesn't seem to run very well(or at all), no errors, however. Also, I need to use the ...
1
vote
2answers
134 views

Enforce Hyphens in .NET MVC 4.0 URL Structure

I'm looking specifically for a way to automatically hyphenate CamelCase actions and views. That is, I'm hoping I don't have to actually rename my views or add decorators to every ActionResult in the ...
1
vote
1answer
37 views

SQL search for values in a field with text datatype regardless of casing

I am trying to get all values for a particular search regardless of casing. On our SQL Server database case sensitivity is turned on and I don't want to have to change this if possible. If I do a ...
1
vote
5answers
108 views

Python - replacing lower case letters

>>> import string >>> word = "hello." >>> word2 = word.replace(string.lowercase, '.') >>> print word2 hello. I just want all the lowercase letters to turn into ...
1
vote
1answer
100 views

How to convert to lowercase a specific pattern in multiple java classes using regular expressions?

I am looking to find a way to convert a specific pattern to lower case for an entire Java project (target: *.jrxml). Basically, I would like to find all expressions matching the following pattern: ...
1
vote
1answer
109 views

Android getStringArray returns only lower case

I'm quite new at this and would really appreciate any help on this. I'm using getStringArray() to retrieve an array with strings. Each string has the first letter upper case. But when the array is ...

1 2 3