The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
3answers
282 views

How to create writing simulation with java?

I need to come up with a way to make three big letters look like they're being typed/written. I can create Letters with paintComponent(); I need ideas/example on how to accomplish this? This is ...
3
votes
2answers
271 views

iPhone Objective-c: weighted random letter

I need a simple way to randomly select a letter from the alphabet, weighted on the percentage I want it to come up. For example, I want the letter 'E' to come up in the random function 5.9% of the ...
0
votes
2answers
1k views

Java regular expression. Alphabetic, with spaces and apostrophe (')

what is the pattern to validate the following regular expression in java. string with only letters, spaces and apostrophes (') I know that for letters is this ("^[a-zA-Z]+$") For spaces is this ("\s) ...
1
vote
0answers
176 views

Android creating a listview like native coantacts app

I have been searching for over 3 days with no success for a class that will create a listview similar to the Android contacts list. I.e. a list with a alphabet indexing panel on the right side that ...
3
votes
4answers
1k views

Check if MyString[1] is an alphabetical character?

I have a string, lets call it MyStr. I am trying to get rid of every non-alphabetical character in the string. Like, in IM's like MSN and Skype, people put their display names like [-Bobby-]. I would ...
1
vote
5answers
956 views

How can I get all alpabetic letters in PHP?

How can I get all alphabetic letters? I need to get all alphabetic letters in an array like: array('a','b','c'...);
2
votes
4answers
1k views

List of Unicode alphabetic characters

I need the list of ranges of Unicode characters with the property Alphabetic as defined in http://www.unicode.org/Public/5.1.0/ucd/UCD.html#Alphabetic. However, I cannot find them in the Unicode ...
4
votes
2answers
737 views

Split list of names into alphabetic dictionary, in Python

List. ['Chrome', 'Chromium', 'Google', 'Python'] Result. {'C': ['Chrome', 'Chromium'], 'G': ['Google'], 'P': ['Python']} I can make it work like this. alphabet = dict() for name in ['Chrome', ...
0
votes
2answers
917 views

Javascript regex alphabetic with few international characters

I need a javascript function for validating alphabetic input with a few extra characters from the Italian languages, namely: àèéìòóù I saw a regex before with something like: ...
0
votes
1answer
359 views

How to make a sorting button on access?

sorry my english. I don´t speak it very well. Well, I'm developing an Access DB and I'd like do implement 2 buttons that, when clicked down, sort my subform "SUBForm1" according to parameters: ...
25
votes
6answers
54k views

How to strip all non-alphabetic characters from string in SQL Server?

How could you remove all characters that are not alphabetic from a string? What about non-alphanumeric? Does this have to be a custom function or are there also more generalizable solutions?