Questions tagged [alphabet]
319 questions
0
votes
1 answer
Validating form field for a specific combination of numbers and alphabets
I need to validate a form field for a specific type of combination of numbers and alphabets:
first four digits are alphabets
next digit is zero
next 6 digits are numeric
e.g.
IBKL 0 001084

Max Ahmed
- 135
- 1
- 8
0
votes
1 answer
Modify This PHP Alphabet Pagination Script To Add Active State
A while back I found a neat little php alphabetical pagination script. It returns entries in a database that start with a particular letter when click on a hyperlink related to the letter. It was using the mysql API so I modified it to use the…

stevenmw
- 689
- 2
- 8
- 15
0
votes
2 answers
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 be instantiated
--------------
** Warnings…
0
votes
3 answers
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 is in the samefolder and it doesnt need to be…

user2313522
- 205
- 1
- 4
- 10
0
votes
2 answers
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 to get it.
Any help is much…

Lee
- 37
- 2
- 9
0
votes
1 answer
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 functions in MS excel.
Such as "i" comes from doing…

frag rant
- 3
- 3
0
votes
2 answers
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 weird characters should be in the input box.
I've…

Matthew Dalli
- 1
- 1
0
votes
2 answers
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: siguienteLetra 'a' and the function return me 'b' or…

jordiAnd
- 127
- 1
- 1
- 8
0
votes
1 answer
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 get listitem which starts from alphabet between A to …

Sagar Joshi
- 574
- 3
- 10
- 25
0
votes
0 answers
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 will work across various email clients and will have…

huddds
- 1,045
- 6
- 27
- 47
0
votes
2 answers
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 letters of the alphabet. Improve this for speed.…

Coder2013333
- 139
- 1
- 9
0
votes
1 answer
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 algorithm to find the correct value.
I effectively…

jr19
- 92
- 7
-1
votes
3 answers
Calling a recursive function using the alphabet
I'm supposed to write a statement that calls the recursive function backwards_alphabet() with input starting_letter. I've figured out how to do that. The problem is that at the end of my code it prints None. How do I get it to stop doing…

Please Help
- 21
- 5
-1
votes
2 answers
Adapting the SVG of a Phoenician letter for a HTML site
I'm trying to adapt an open-source SVG created in Inkscape so it can be embedded on my experimental website in the same I've done so with other SVGs from the same alphabet.
Phoenician "mem" and "nun" SVGs on my site
-1
votes
2 answers
How to match complete words for acronym using regex?
I want to only get complete words from acronyms with ( ) around them.
For example, there is a sentence
'Lung cancer screening (LCS) reduces NSCLC mortality';
->I want to get 'Lung cancer screening' as a result.
How can I do it with regex?
original…

정다라
- 13
- 3