Tagged Questions
The alphabet tag has no wiki summary.
21
votes
10answers
800 views
Are there programming languages that rely on non-latin alphabets?
Every programming language I have ever seen has been based on the Latin alphabet, this is not surprising considering I live in Canada...
But it only really makes sense that there would be programming ...
16
votes
7answers
2k views
Most efficient way to get next letter in the alphabet using PHP
Given any character from a to z, what is the most efficient way to get the next letter in the alphabet using PHP?
11
votes
10answers
15k views
Generating an array of letters in the alphabet in C#
Is there an easy way to generate an array containing the letters of the alphabet in C#? It's not too hard to do it by hand, but I was wondering if there was a built in way to do this.
7
votes
8answers
2k views
Quickest way to enumerate the alphabet in C#
I want to iterate over the alphabet like so:
foreach(char c in alphabet)
{
//do something with letter
}
Is an array of chars the best way to do this? (feels hacky)
Edit: The metric is "least ...
7
votes
7answers
1k views
Is there a fast way to generate a dict of the alphabet in Python?
I want to generate a dict with the letters of the alphabet as the keys, something like
letter_count = {'a': 0, 'b': 0, 'c': 0}
what would be a fast way of generating that dict, rather than me ...
6
votes
2answers
456 views
Howto enumerate the LOCALIZED alphabet in C#?
First of all, this is not a duplicate of:
Quickest way to enumerate the alphabet in C#
Because I need to get all the characters of the alphabet OF AN ARBITRARY (variable) LANGUAGE, and that in the ...
5
votes
4answers
114 views
what is the best way to loop through alphabet in C# to output to Excel?
I have code that is exporting to excel and i have an array of columns . .
var colheaders = new string[] {"Name", "Age", "Total", "Date"}
right now i have code that looks like this to setup the ...
4
votes
5answers
925 views
Convert integer into its character equivilent in Javascript
I want to convert an integer into its character equivalent based on the alphabet. For example:
0 => a
1 => b
2 => c
3 => d
etc. I could build an array and just look it up when I need it ...
4
votes
4answers
800 views
How can I know in Javascript if character is part of alphabet (not just English alphabet)?
I need to analyze pressed key if it is alphabet (for all languages) in UTF-8 encoding. Is that possbile in anyway?
4
votes
9answers
7k views
Iterating through the Alphabet - C# a-caz
Hi i have question about iterate throught the Alphabet.
I would like to have a loop that begins with "a" and ends with "z". After that the loop begins "aa" and count to "az". after that begins with ...
3
votes
4answers
797 views
Get character position in alphabet
I'm 90% sure there is a built in function that does this.
I need to find the position of a character in an alphabet. So the character "b" is position 1 (counting from 0), etc. Does anyone know what ...
3
votes
3answers
1k views
How do I increment a variable to the next or previous letter in the alphabet in Java?
I'm relatively new to Java coding, and was looking for some help. I have a capital letter defined in a variable string, and I want to output the next and previous letters in the alphabet. For example, ...
2
votes
4answers
56 views
Transform an int to a char
I'd like to write the alphabet with a link for each letter. So I used templates but I don't how to make this letter I tried that but I had a normal mistake : (A decimal representation must imediately ...
2
votes
2answers
2k views
how to implement alphabetic scroll bar in android
i am using fastscroll with indexer, but i want to implement a alphabetic scroll view just similar to Iphone. any idea?
i hope u can take a look at this image
1
vote
1answer
66 views
Whole alphabet for sections index in core data
I've implemented a table populated with core data and now I'm trying to indexing it with sections by displaying the side Alphabet (in Contacts like format).
In the code below, if I use the commented ...
1
vote
0answers
59 views
A PWM with gapped alignments in Biopython
I'm trying to generate a Position-Weighted Matrix (PWM) in Biopython from Clustalw multiple sequence alignments. I get a "Wrong Alphabet" error every time I do it with gapped alignments. From ...
1
vote
1answer
625 views
Alphabet Bar extended linearlayout problem
I'm trying to get an Android Alphabet positioning bar to work following an old example provided by Josh Guilfoyle:
AlphabetBarListView <- original project and screen capture can be found here
I ...
1
vote
2answers
2k views
UITableView - Alphabet
Here is the improvement that I wish to add to my UITableView with alphabet:
If there are no results in my table that don't start with one of the letters of the alphabet, I don't want to see this ...
1
vote
1answer
570 views
How can I detect any key pressed (numeric, alphabet) event in Android for EditText
I have inherited EditText class an made my custom class, MyEditText.
and want to detect key pressed(say 'a', 'b', 'c'... '0', '1', '2'... etc.) event in Android. How?
It seems overridden method ...
1
vote
3answers
835 views
Creating a sequential list of letters with R
I would like to be able to create a sequence of letters in R (to assist in importing data from a SPSS file)
It's quite easy to create a sequence of numbers, for example:
seq(1,1000)
[1] 1 2 3 4 5 6 ...
1
vote
7answers
968 views
Incrementing alphabets
I am trying to create a function which will give me alphabet position when an index is passed. It will be same like how excel shows it's columns. A...Z, AA,AB.... I wrote the below function to get the ...
1
vote
2answers
497 views
What is a good phonetic alphabet for a password application?
I'm writing an application that will create "difficult" passwords for the user. The user will only see the password once, and they'll copy it into a client that will remember it for them forever.
...
0
votes
3answers
64 views
Rearranging the alphabet (VB)
I wanted to basically rearrange the alphabet with a keyword infront as I am doing a simple substitutional cipher. I have kind of worked out the logic of doing that but I am a bit stuck on the coding ...
0
votes
1answer
126 views
Unable to make AlphabetIndexer work
I'm attempting to implement the AlphabetIndexer to help the users scroll through my list, but nothing shows up on the list when I run the app. Could someone please tell me why?
Note: I am not ...
0
votes
1answer
48 views
Last two alphabets of a link are showing twice in internet explorer
The Last two alphabets of a link placed in footer are showing twice/repeated in Internet explorer from nowhere.... I am using div based design in xhtml.
How could I get rid of this error?
0
votes
1answer
116 views
Alphabet Filter for Table in Rails
Im new to rails, so forgive me if there is an easy answer. Im trying to implement an "Alphabet Index" for a table in rails. I want to be able to click on a letter and have the table refresh - ...
0
votes
0answers
77 views
Android show digits keypad on activity start
As stated in the title, how do I call the digits keypad on activity start? Right now I have this:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
...
0
votes
2answers
103 views
PHP dynamic creation of alphabet
I would like to create some arrys. First of all I would like to tell you what it is about so that you understand why I am doing this:
Cryptography.
I want create an array with the alphabet.
such as
...
0
votes
3answers
178 views
Adding vertical alphabets selector in UIView
Hi
Can I add the vertical alphabets selector thing like that we use in UITableView, in UIView?
Best Regards
0
votes
2answers
94 views
Is there a built in way of getting arrays of common sets like alphabet, numbers, etc in ios?
I would assume there would be a convenience class somewhere where I could call say
NSArray *alphabet = [SomeClass lowerCaseAlphabet];
instead of having to write it out every time. Is there such a ...
0
votes
4answers
132 views
C++ - Alphabatizing Strings
I am currently reading information from an input file. Of that information, there is a name. All the information is read into a struct. There is an array of these structs.
I need to alphabetize the ...
0
votes
3answers
123 views
php sort array issue
i want to sort an array by alphabet
when i use asort() its sorting , but the results that i get is first of all , the names in upper-case, and after that all the names with lower-case
like :
Avi
...
0
votes
1answer
182 views
Produce a String that contains alphabetic symbols only, (52 for English, 60 for German etc)
is there a library that can return strings like that
Lib.Alpha.FOR_LATIN = 'abcd...zABCD..XYZ'
Lib.Alpha.FOR_GERMAN = 'aäbcd..oö..uü...'
etc?
0
votes
1answer
179 views
how do i get the numeric representation of a character in javascript?
I'd like to get a javascript numeric representation for a letter to do some relative manipulation i.e. in pseudocode to conduct an operation like 'a'.getNumberRep - 'b'.getNumberRep.
Best way to do ...