Tagged Questions
The alphabetic tag has no wiki summary.
10
votes
7answers
25k 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?
4
votes
3answers
389 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', ...
2
votes
4answers
436 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
0answers
62 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 listview similat to contatcs list i.e a list with alphabetic indexing pannel on the right side that animates too.
If ...
0
votes
4answers
172 views
PHP: How can I get all alpabetic letters?
How can I get all alphabetic letters?
I need to get all alphabetic letters arrays : array('a','b','c'...);
Thanks
0
votes
2answers
270 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
175 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: ...
-7
votes
0answers
97 views
Generating all possible strings (only alphabets) of length 6? [closed]
I am planning to have a database which need to have all possible combinations of alphabets (both small and capitals) but the string length is fixed 6 letters. So that means 42^6 total combinations. ...