Tagged Questions
Alphabetized usually refers to something ordered alphabetically from A to Z.
4
votes
3answers
719 views
Solution Folders in VS2008 are Not Alphabetized
I moved a bunch of projects to Solution Folders to chop up our list of projects into manageable folders, now each of the folders projects are not in alphabetical order. This only occurs on machines ...
2
votes
1answer
129 views
How to *un*-alphabetize the Methods & Fields in Visual Studio (2010)
I use Java Eclipse and I like how I can toggle between Sorted/Unsorted view of the methods and fields. Unsorted makes it easier to navigate the Source code as-is.
However, Visual Studio 2010 doesn't ...
2
votes
4answers
493 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
...
2
votes
8answers
12k views
Alphabetically Sort a Java Collection based upon the 'toString' value of its member items
Assume I have a user defined Java class called Foo such as:
public class Foo
{
private String aField;
@Override
public String toString()
{
return aField;
}
}
and a ...
1
vote
1answer
45 views
Alphabetic Linked List Not in Order
I'm trying to create a linked list that is sorted by both name and rating. The rating sort part puts everything in the right order, but for some reason, the alphabetic sort doesn't put anything in the ...
1
vote
2answers
425 views
Alphabetizing functions in a Python class
Warning, this is a sheer-laziness query! As my project develops, so also do the number of functions within a class. I also have a number of classes per .py file. So what I would like to do is re-sort ...
1
vote
5answers
2k views
PHP (folder) File Listing in Alphabetical Order?
I'm not sure how simple this would be, but I'm using a script which displays the files from a specific folder, however I'd like them to be displayed in alphabetical order, would it be hard to do this? ...
1
vote
1answer
116 views
Sorting a List of Reviews Chronologically
I am trying to sort a list of movie reviews in chronological order. We have two options users can choose from, chronological and alphabetical. The page defaults to alphabetical, but when people click ...
0
votes
3answers
206 views
How do I alphabetize the items in two different CheckBoxLists?
I have two checkboxes (Recommended and Others) which have peoples names (concatenated, i.e. John Smith is one item). I want to alphabetize the selected members of each list into one. How can I do ...
0
votes
4answers
209 views
Save loop result to a string
Is it possible to save loop results to a string?
$sql = "SELECT SUBSTR(a.`title`, 1,1) FROM articles a WHERE a.`tag` = 'human_resources'";
$results = db_query($sql);
while ($fields = ...
0
votes
3answers
181 views
Finding alphabetical position in a large list
I have an as400 table containing roughly 1 million rows of full names / company names which I would like to convert to use another datastore while still matching the speed of the original.
...