Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
2k views

ListView with Alphabet on Android

I want to do a listview on android and it contains an alphabet near of the list (like iphone application). I couldnt find any way to implement an list and having alphabets, when ı click on c letter ...
4
votes
1answer
59 views

sort wordpress posts by title, ignore articles like “the”, “a”, “an”

I'm sorting my posts alphabetically by Title, like so: <?php { $posts = get_posts($query_string . '&orderby=title&order=asc&posts_per_page=-1'); } ...
4
votes
4answers
5k views

How do I sort enum members alphabetically in Java?

I have an enum class like the following: public enum Letter { OMEGA_LETTER("Omega"), GAMMA_LETTER("Gamma"), BETA_LETTER("Beta"), ALPHA_LETTER("Alpha"), private final String ...
3
votes
3answers
60 views

PHP - Erroneous Alphabet Loop

Can Anyone Explain me why : <?php for ($i = 'a'; $i <= 'z'; $i++){ echo "$i "; } ?> Why its Output is : a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ac ...
3
votes
3answers
69 views

How to auto-format AS3 variable declarations in alphabetical order?

While coding, I wondered if a plugin exists that I could highlight a series of variable declarations, hit some special keyboard shortcut and BAM! They would appear in alphabetical order. Is there ...
3
votes
2answers
121 views

re-order alphabet sorting in Perl

I am trying to fix sorting in Armenian alphabet, because all standard Unix tools and programming languages sort letters and words as a result for only 1 of the 2 major dialects (Western). Translating ...
3
votes
4answers
1k views

SQL Listing all column names alphabetically

I know that SELECT * FROM Table will list all columns in the table, but I am interested in listing the columns in alphabetical order. Say, I have three columns, "name", "age" and "sex". I want ...
2
votes
1answer
123 views

Java - Sort a Map according to some rules

I have a map that i want to sort its contents according to some rules : Sort the map Alphabetically (From A to Z) according to its Values and not its Keys. Ignore the Case Sensitivity of the ...
2
votes
2answers
454 views

How to create an alphabetical scrollbar displaying all the letter in android?

My purpose is to obtain something like that : But the only examples i can find are lists like that : android - listview fastscroll with alphabet like on iPhone contacts activity Obviously, I don't ...
2
votes
2answers
167 views

Is there a standard way to sort by a non-english alphabet? For example, the romanian alphabet is “a ă â b c…” [closed]

Possible Duplicate: How do I sort unicode strings alphabetically in Python? As a citizen of the Rest-of-the-World, I'm really annoyed by the fact that computers aren't adapted by default to ...
2
votes
3answers
466 views

Python regex: Extracting whole words

I have a large set of real-world text that I need to pull words out of to input into a spell checker. I'd like to extract as many meaningful words as possible without too much noise. I know there's ...
2
votes
2answers
405 views

Why is NSDictionary alphabetical in memory, but not in enumeration?

I understand that the right way to sort an NSDictionary is to create an array from the keys, sort the array, and then enumerate through the array and operate on the NSDictionary from there. My ...
2
votes
2answers
384 views

Alphabet index template: “xsl:key” match problem

XML: <?xml version="1.0" encoding="windows-1251"?> <mode> <term> <name>abhdk</name> </term> <term> ...
2
votes
1answer
336 views

implement alphabetical scroll in MPMediaPickerController app

If you go to the iphone library and then go to songs, you will see the songs being displayed in a similar way to the MPMediaItemPicker class does. The only difference is that the ipod application ...
2
votes
2answers
456 views

Alphabetical order help

I'm having an issue here, I am trying to get all the titles from my database and list them in alphabetial order with the first letter indicating where we are at, so to be more clear: A: Animal Alex ...
2
votes
3answers
1k views

Quickly alphabetize a large file via python

#!/usr/bin/python import random import string appendToFile = open("appendedFile", "a" ) # Generator for i in range(1, 100000): chars = "".join( [random.choice(string.letters) for i in ...
2
votes
5answers
2k views

MYSQL: how to “reorder” a table

I have a table like the following, | id | name | color | ------+--------+--------- | 1 | pear | green | | 2 | apple | red | | 3 | banana | yellow | | 4 | grape | purple | I'd ...
2
votes
4answers
495 views

MySQL sort by name

Is ir possible to sort a column alphabetically but ignoring certain words like e.g 'The' e.g. A normal query would return string 1 string 3 string 4 the string 2 I would like to return string 1 ...
1
vote
1answer
10 views

Categorize a list of names from database

I have a database that contains names. I'm needing to take those names and sort them alphabetically into 4 ARRAY's -> (A-F) (G-L) (M-R) (S-Z). Any strategies out there that i could use?
1
vote
3answers
166 views

Generating an alphabetic sequence in Java

I'm looking for a way of generating an alphabetic sequence: A, B, C, ..., Z, AA, AB, AC, ..., ZZ. Can anyone suggest a convenient way of doing this. What data structures can I make use of? I'd ...
1
vote
3answers
39 views

Use mySQL to order US States alphabetically

Relatively new to mySQL so this is probably an easy one: I have a table named Zip with three columns: Zip varchar(255) City varchar(255) State enum('AL','AK','AZ','AR','CA',etc.,etc., 'WY' When I ...
1
vote
3answers
70 views

Validating String input has no numbers

I have found how to validate that an input is a number using try/catch but how do I go about validating that a user input is alphabetical only and contains no numbers?
1
vote
2answers
245 views

alphabetical pagination in rails

I'm searching a gem for Rails for alphabetical pagination. I wish I could have a list of first letters found in the result (I mean, if there is no row beginning with 'a', I don't want the 'a' to be ...
1
vote
2answers
111 views

Python - Order nested list in alphabetical way

I have the following list: ["stephane", "philippe", "hélène", ["hugo", "jean-michel", "fernand"], "gustave"] And I would like to order it like this: ["gustave", "hélène", ["fernand", "hugo", ...
1
vote
0answers
34 views

Is it possible to modify the order in which MQ FTE picks the file from source path?

MQFTE picks the files and copies in the destination by alphabetical order (if I am not wrong). Is it possible to pick the files from the source path by file size or by file extension or any other ...
1
vote
2answers
100 views

C# - Sorting a ListBox by the ending

I have a ListBox that contains some data like below: C44 EXCLUDES 237.910 193.469 0 0603_5 C45 EXCLUDES 244.102 193.387 0 0603 R47 EXCLUDES 226.935 179.519 90 ...
1
vote
3answers
359 views

Eclipse organize methods in alphabetical order

I have a large class that contains about 30 methods. Is it possible to automatically sort them in alphabetical order in eclipse? I was hoping to do this so they would be easier to find when java ...
1
vote
1answer
102 views

Check words if they are composed of Consecutive Alphabetic Characters

I take a sentence as input like this: abcd 01234 87 01235 Next, I have to check every word to see if it's characters are consecutive in alphabet. The output looks like this: abcd 01234 Well, 01235 ...
1
vote
2answers
420 views

Insert row into table alphabetically on a certain cell

I am using jQuery to insert rows into a table after a database insert. When the page loads the table is ordered alphabetically on a particular cell (see below). When I insert a new row using jQuery I ...
1
vote
1answer
95 views

Find previous & next entries in alphabetical index for a candidate

In a database, I have a string field. I want to find previous & next row in alphabetical order for a candidate string that is not in the database. One solution is to insert temporarily this ...
1
vote
1answer
743 views

Sorting html ul/li list in alphabetical vertical blocks

Here's a problem I run into every now and then, that I usually try and solve from a back end perspective, but would like to know if there's a magic solution others have found to solve this on the ...
1
vote
4answers
578 views

java - alphabetical order (list)

how do i store my inputs in alphabetical order, i am inputting names into an arraylist: persons.add(person); How to do that?
1
vote
4answers
290 views

C++ - Alphabetizing Strings - '<' Operator Overload

For starters this is homework, I have a good understanding of what i'm supposed to do but I am obviously missing something. I currently have an abstract base class called "Person". And I have 3 ...
1
vote
1answer
907 views

Android Programming: Alphabetically Order ListView

As the title says, how can I do this? I've looked but can't find the answer. It's really annoying me now. This is for my file browser, I've tried using Collections.sort() on the array that gets added ...
1
vote
2answers
284 views

Get all posts starting with an alphabet in wordpress

I'm trying to create directory listing in which at the top there will be links...from a-z some what like this: A B C D E ...............V W X Y Z When a user presses on A, all the posts with titles ...
1
vote
3answers
97 views

Regex - Format with tabs and alphabetical

Is it possible to use regex to turn this <site-ui:header title="error" backURL="javascript:history.go(-1);" /> into this <site-ui:header backURL="javascript:history.go(-1);" ...
1
vote
2answers
406 views

JAVA or JAVA SCRIPT OR Idoc SCRIPT alphabetical sort

I have the following task: All items within categories should be sorted alphabetically except for Examples. Special characters and numbers should be displayed before letters. I'm facing with a ...
1
vote
4answers
392 views

Sorting digits in a string alphabetically

We have a list of titles, some of which start with numbers (e.g. 5 Ways to Make Widgets). We would like to sort this as if it were "Five Ways..." without changing the title. We know that some movie ...
1
vote
3answers
331 views

Batch Files: Processing files in alphbetical (Numerical maybe>) Order

I am currently trying to process a bunch of files with imagemagick using a batch file in windows, they are all numbered numerically as follows: image00 image01, image02, ..., image010, image011, ..., ...
1
vote
3answers
382 views

Best way to show friends of a user in alphabetical order

On a social network I am working on in PHP/MySQL, I have a friends page, it will show all friends a user has, like most networks do. I have a friend table in mysql, it only has a few fields. auto_ID, ...
0
votes
3answers
46 views

Shell scripting - which word is first alphabetically?

How can you check which words is first alphabetically between two words? For example in the code #!/bin/bash var1="apple" var2="bye" if [ $var1 \> $var2 ] then echo $var1 else echo $var2 fi I ...
0
votes
2answers
32 views

Solr ALPHABETICAL RANGE QUERY

I am trying implement an alphabetical range to perform a query in Solr 3.3. The user wants to fetch a list of restaurants which names start with (for example) A to G. Tried with "frange" function but ...
0
votes
2answers
16 views

Find files in order of modification time

I have a certain shell script like this: for name in `find $1 -name $2 -type f -mmin +$3` do Filename=`basename "ls $name"` echo "$Filename">>$1/order.txt done find command returns N number of files ...
0
votes
1answer
104 views

Wordpress sort category dropdown list?

I am using User-Submitted-Posts Plugin in order to let users submit their images to my wordpress site. Each image is uploaded within a category. The categories are set in the wordpress admin area and ...
0
votes
0answers
44 views

What is the best way to check list appears in alphabetical order in java, Selenium Junit

I'm using Selenium RC. I have a list of names which appear in random order. There is a filter to arrange them alphabetically. I want to test that after clicking on the filter the names appear in ...
0
votes
4answers
46 views

Which letter is the most compressible in the English alphabet? [closed]

I have to send minimal (location) data to a server from a mobile device. For convenience reasons (PHP-compatibility) I don't just send it as a raw query string or post data, I send it as a variable ...
0
votes
3answers
44 views

Break out an alphabetized list by starting letter [C#]

I have a list, it's already sorted in alphabetical order. I'd like to break it into sections corresponding with the letter is starts with, like so: A aListItem1 aListItem2 aListItem3 B ...
0
votes
3answers
48 views

Htaccess RewriteRule to accept special characters

My htaccess rewrite must handle these scenarios: http://example.com/words/pantalón http://example.com/words/pantal%C3%B3n http://example.com/words/señor+señora My current .htaccess configuration ...
0
votes
1answer
63 views

How to put out the alphabet?

is there any way to put out the alphabet in iOS? I want to populate a table with all the letters of an alphabet. And also other alphabets. Any suggestion to do that without any extensions or smth. ...
0
votes
1answer
45 views

Listing Array Values Alphabetically with Letter Heading

I need some help figuring this out. I am trying to create a function that outputs values in an array alphabetically, but also echoes a new letter title after it reaches the end of the current letter. ...

1 2