The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
22 views

Alphabetizing in Java- error and warnings?

I'm trying to create a program that alphabetizes a list, using the Collections.sort method and java.util.List, the Error is: 1 error and 15 warnings found: Error: java.util.List is abstract; cannot ...
0
votes
1answer
23 views

removing nonalphabet characters in a filename

I have a bunch of files and I'd like to remove all the characters that are not in the alphabet. So given a filename of "Home - noises (f).txt" i want a result of "Home noises f.txt. the batch file ...
5
votes
1answer
85 views

Alphabet range python

Instead of making a list of alphabet like this, alpha = ['a','b','c','d'.........'z'] is there any way that we can group it to a range or something? For example, for numbers it can be grouped using ...
0
votes
2answers
137 views

C++ Quicksort Alphabet Array

I am trying to sort an alphabet array using quicksort. I've basically tried going from the main algorithm and converting it to work with char arrays. I think I'm almost there, but I just can't seem ...
-1
votes
2answers
151 views

Python Decoder: alphabet to numbers [closed]

I've just recently started programming in python through an online course, and on one of the assignments we were required to encode a string with rot13. I used the maketrans method and everything is ...
-4
votes
2answers
60 views

Create Alphabet-Indexed Section Headers [closed]

I am a total Android n00b. Can anyone point me in the right direction - a tutorial, example, or related documentation - for how to create an Alphabet-Indexed Section Header?
-2
votes
4answers
174 views

How to set value of alphabet letter? C++ [closed]

Well, I have to make a task, that will sort elements of array in UNIQUE way. So, for example, if I input 1st string: BOB, I have to do: 2+15+2 (because of their positioning in the alphabet) and then ...
-10
votes
2answers
160 views

How would I sort an unsorted alphabet array with quick sort in c++? [closed]

Given the array of alphabet: {'A','E','O','D','B','Q','G','V','Y','J','Z','S','M','N','C','P','F','R','L','T','U','H','W','X','I','K'}. Sort the array by quick sort and show the number times the ...
0
votes
1answer
84 views

Alphabetical sequential list in excel spreadsheet

I am trying to create the following formulas sum(a2:h2), sum(i2:p2),sum(q2:x2);sum(y2:af2) in adjacent cells, in MS excel 2010. I could get the series working up to third term using char and code ...
0
votes
7answers
116 views

Representing letters as numbers in java

I was wondering how you would represent letters as integers in java. I am working on a problem where I have to find the mid letter between a two lettered word. For example, I would choose the word ...
-1
votes
3answers
102 views

Compress char[] alphabet [closed]

My best friend's girlfriend texted me and thought it would be a good idea to put some code on his cake saying happy birthday. I figured I would make an array for the alphabet, and use some serious ...
0
votes
2answers
254 views

JavaScript Text Validation Not Working with Regex

I'm trying to validate the Firstname and the Surname fields in an HTML document via JavaScript. The validation has to prompt whether the user inserted a valid Name/Surname meaning that no numbers or ...
0
votes
2answers
90 views

HASKELL Function nextLetter of alphabet

I have to write a function in HASKELL whose name is siguienteLetra that take a variable and this variable is a letter of alphabet and return the next letter. How can i do that? example: ...
0
votes
0answers
62 views

WP7 TextBox how to detect key up is alphabet or punctuation mark

I want filter a ListBox based on what user types in the TextBox, so I handle the TextBox_KeyUp event. TextBox_OnTextChanged doesnot suit my need. My Windows Phone device has a physical keyboard. So I ...
-1
votes
1answer
139 views

generate the Cyrillic and Arabic alphabet [closed]

I found this on stackoverflow as to how I generate the english/latin alphabet. I would like the same as this but for the Cyrillic and Arabic alphabet - anyone know how I might create such with c#?
3
votes
1answer
67 views

What do I need to know about fonts and character sets for multi-language support

NOTE: I accepted an answer because it is helpful and I don't expect to get another one any time soon, but the question is still not completely answered so I may award a bounty to anyone who does. I ...
0
votes
1answer
83 views

Get data from generic list between some alphabet

I have one generic list , from which I want to get those items only which are starting between some alphabets. Supoose I have listitems like ABC,DEF,Zebra,Important,Check,Jump From this I want to ...
1
vote
4answers
220 views

Python 3: Trying to iterate lines of alphabet based on function of i

I'm trying to write a program that does the following: In this program, we print out i**q % p letters from the alpabet on line i for example, if q=2 and p=12 then we want to print: 1**2 % 12 = 1 ...
0
votes
2answers
240 views

Recursive Alphabet with Sorting in C++ [closed]

I would like to ask, I have this problem HOW : HOW, HWO, OHW, OWH, WHO, WOH ASK : AKS, ASK, KAS, KSA, SAK, SKA PIE : EIP, EPI, IEP, IPE, PEI, PIE I figured that the pattern would be always like ...
2
votes
1answer
133 views

Prepare array for sorting in closure

According to my research and googling, Javascript seems to lack support for locale aware sorting and string comparisons. There is localeCompare(), but it has been reported of browser specific ...
0
votes
4answers
627 views

How to write a program to cypher/decipher a plain text file, with the use of a custom alphabet? [closed]

I've just started experimenting with Python and as such I have a very basic knowledge of the language and it's capabilities/limitations. Basically what I'm trying to achieve is to create a modified ...
0
votes
0answers
46 views

Alpha lists for html emails?

I'm doing a html email where I need to do a numeric list which also has an indented letter list. e.g. 1. Example a. sub example 2. Example etc I'm looking for something which ...
0
votes
3answers
389 views

Unicode Blocks: get alphabet of every language [Java]

I have searched so much now and hope that somebody can help me. I want to get the Unicode Blocks of every language in Java. What I have found so far is: Character.UnicodeBlock.ARABIC; ...
-1
votes
1answer
47 views

Score or how to determine the strokes if right or wrong - android application that can write letters [closed]

I have made an application that can let a child Listen on how a letter is correctly pronounced, draw anything on a blank canvas, and Write a letter. Listen and Draw are quite finished but in Write, I ...
0
votes
2answers
123 views

Algorithm/code to return strings containing 26 letters of alphabet from dictionary

Need help/solution for the following interview question: From a folder containing several files whose contents are the english dictionary, return a string or strings that, between them, contain all 26 ...
0
votes
1answer
236 views

Android: good letters recongnition

I'd like to improve my recognition of alphabets, I have used Gestures api of android but I haven't got a good recoginition of letters drawn (some conflicts between some letters). Have any one a good ...
0
votes
1answer
190 views

position of character in NSString vs NSArray - performance/efficiency

Does anyone know what is more efficient with regards to speed for finding a character in an NSString or in an NSArray of the same characters? I want to know which has the best and most efficient ...
0
votes
0answers
208 views

Alphabetical scroll bar not working

I've implemented an alphabetical scrollbar as described in the link How to create an alphabetical scrollbar displaying all the letter in android? The scrollbar displays fine but when I click on it ...
5
votes
3answers
191 views

Expand alphabetical range to list of characters in Python

I have strings describing a range of characters alphabetically, made up of two characters separated by a hyphen. I'd like to expand them out into a list of the individual characters like this: 'a-d' ...
1
vote
4answers
67 views

Is there a performance friendly way to list results for each letter in the database?

I want to create an index page with a couple of results for each letter of the alphabet. At the moment I have this: SELECT url_slug, name FROM artists WHERE name LIKE "A%" ORDER BY rand() LIMIT 10 ...
3
votes
2answers
285 views

The Alphabet and Recursion

I'm almost done with my program, but I've made a subtle mistake. My program is supposed to take a word, and by changing one letter at a time, is eventually supposed to reach a target word, in the ...
0
votes
0answers
174 views

Android AlphabetIndexer for Hebrew and english togather

I am using AlphabetIndexer in my custom lists. However, I am having difficulty using it for hebrew chars. I tries the following but it does not work: indexer = new AlphabetIndexer(c, ...
3
votes
1answer
971 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 ...
5
votes
4answers
409 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 ...
2
votes
4answers
112 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 ...
0
votes
3answers
230 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 ...
1
vote
1answer
549 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
69 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?
1
vote
1answer
173 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 ...
0
votes
1answer
344 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
1answer
224 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); ...
4
votes
4answers
4k 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 ...
0
votes
2answers
241 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 ...
6
votes
3answers
1k 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 ...
1
vote
1answer
995 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
3answers
374 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
272 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
183 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 ...
2
votes
2answers
6k 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 ...
2
votes
2answers
5k 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 2