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 8455723
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T12:21:26+00:00 2026-06-10T12:21:26+00:00

I have an Android ListView I would like to sort. Currently I am using

  • 0

I have an Android ListView I would like to sort. Currently I am using Collections.sort which alphabetizes just fine.

However, I would like to take one step further and move the leading “the”. Is there a built in Java or Android method that can handle this?

If not, what is the code I would need?

  • 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-06-10T12:21:27+00:00Added an answer on June 10, 2026 at 12:21 pm

    Use Collections.sort() with a custom Comparator<String> that strips out leading "The"s before comparing strings.

    List<String> foo = /* init */;
    
    Comparator<String> ignoreLeadingThe = new Comparator<String>() {
        @Override public int compare(String a, String b) {
            // TODO check for nulls?
    
            // (?i) makes the match case-insensitive
            a = a.replaceAll("(?i)^the\\s+", "");
            b = b.replaceAll("(?i)^the\\s+", "");
    
            // TODO use compareToIgnoreCase() instead?
            return a.compareTo(b);
        }
    };
    
    Collections.sort(foo, ignoreLeadingThe);
    

    Demo: http://ideone.com/6hogi

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

Sidebar

Related Questions

I have created a listview with 3 rows in Android. If I would like
I have seen some ListView dynamic growing implementations which use OnScrollListener. I would like
I would like to create a ListView in Android where I have the ability
I have populated a listview(4columns) using simpleadapter and hashmap. Now I would like to
I have a listview with some items. I would like to get the text
I would like to have a special listview with a title, couple of sub-categories,
Hello I have a multi choice listview. I would like to add more than
I have an activity in Android which uses a ListView. When I click on
i have a listview and i would like to go to a new activity
I currently have a ListView in Android with a LinearLayout as a header. I

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.