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

  • Home
  • SEARCH
  • 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 8090197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T19:38:50+00:00 2026-06-05T19:38:50+00:00

I was beginning to write a bubble sort for this when I thought maybe

  • 0

I was beginning to write a bubble sort for this when I thought maybe there is a way to use a function with array.sort() that does the job ?

Here is a (hopefully) clear example of what I have to sort : (file names list)

var array = ['impression_page_1_12_juin','impression_page_1_13_juin','impression_page_2_12_juin','impression_page_2_13_juin']

As you can see there are 2 ‘page1’ on 2 different dates, only characters 19 and 20 in each string are different. I’d like to sort on those 2 characters.

Can Javascript do that straightforward or should I return to my substrings and bubble sort method ?

  • 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-05T19:38:52+00:00Added an answer on June 5, 2026 at 7:38 pm

    Use the sort method with a function for the comparison:

    array.sort(function(x,y){
      var xp = x.substr(18, 2);
      var yp = y.substr(18, 2);
      return xp == yp ? 0 : xp < yp ? -1 : 1;
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there some quick way how to write egrep regex that accepts something in
We have a database app that we're beginning to write some new systems for
I'm wanting to write a whiteboard app. I have a beginning that renders a
I'm taking a beginning Java class and an assignment requires that I write a
I'm currently looking for a way to write to the beginning and end of
I'm trying to write a simple php function that will strip everything between two
I'm beginning Haskell... I tried to write the following trivial function in two different
I'm starting to write a code, but it fails at the beginning. This is
Many beginning programmers write code like this: sub copy_file ($$) { my $from =
I am just beginning to learn how to write software that accesses an SQL

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.