Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7091813
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T08:14:04+00:00 2026-05-28T08:14:04+00:00

I hava an ArrayList of String values (they need to be formatted as such)

  • 0

I hava an ArrayList of String values (they need to be formatted as such) which I need to sort by year. The list looks like:

01-05-2011
11-24-2011
01-12-2012
...

I currently have them sorted alphabetically by month, but I was wondering how I can sort this ArrayList of Strings by year.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T08:14:05+00:00Added an answer on May 28, 2026 at 8:14 am
    Collections.sort(
        myList, new Comparator<String>() {
          @Override
          public int compare(String a, String b) {
            // If a is "11-24-2012", then aLastDash points
            // here ---------^.
            int aLastDash = a.lastIndexOf("-");
            int bLastDash = b.lastIndexOf("-");
            return a.substring(aLastDash+1).compareTo(
                   b.substring(bLastDash+1));
          }
        });
    

    Collections.sort takes a Comparator that specifies how to compare two list values. The list values in your case are Strings. You can just compare the last 4 digits of each string lexicographically and you’re done.

    Collections.sort is stable, so if your strings are already sorted by month, and you sort by year, groups of strings with the same year will still be sorted by month.

    Ideally though, you should convert your list to a list of something other than strings, for example, Joda time dates. Right now this code is stringly typed. The sooner you take inputs and coerce them to meaningful objects, the less of your code has to make input assumptions the fewer lines of code you have to debug when your assumptions don’t quite hold.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I hava a function that looks something like this: require(config.php); function displayGta() { (...
I hava java swing project which is developed in JBuilder IDE. Now I need
I hava a url like mysite.net/home/index/page/XX while XX is any number. I need to
I hava a time string,the format is HHMM, I need to get the decimal
I hava a project which will look like similar to Paint program. Here, I'm
I hava a string like this: var id = 01020304; Is there a simple
I hava a url such as search.do?offset=20 offset sometimes is in the url sometimes
i hava two text boxs in flex.have to add two txt boxs values in
I hava a perl subroutine where i would like to pass parameters as a
I hava a data window object, in which I am fetching some attributes from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.