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

The Archive Base Latest Questions

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

When compare two version strings, to_f does not work well: > 1.5.8.to_f > 1.5.7.to_f

  • 0

When compare two version strings, to_f does not work well:

 > "1.5.8".to_f > "1.5.7".to_f
  => false

string comparison is better, but not always correct:

 > "1.5.8" > "1.5.7"
  => true 

 > "1.5.8" > "1.5.9"
  => false 

 > "1.5.8" > "1.5.10" # oops!
  => true 

How to compare version strings properly?

  • 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-10T11:26:34+00:00Added an answer on June 10, 2026 at 11:26 am

    An idea: create a Object#compare_by method that behaves like compare (aka the spaceship operator Object#<=>) but takes a custom block:

    class Object
      def compare_by(other)
        yield(self) <=> yield(other)
      end
    end
    
    >> "1.5.2".compare_by("1.5.7") { |s| s.split(".").map(&:to_i) }
    #=> -1
    

    You can also take a more specific approach still based on the compare method:

    class String
      def compare_by_fields(other, fieldsep = ".")
        cmp = proc { |s| s.split(fieldsep).map(&:to_i) }
        cmp.call(self) <=> cmp.call(other)
      end
    end
    
    >> "1.5.8".compare_by_fields("1.5.8")
    #=> 0
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Well i want to compare 2 strings (version one and version two) and get
Possible Duplicate: How do you compare two version Strings in Java? I've 2 strings
Does anyone have code to compare two version numbers in JavaScript? I just want
How do you compare two strings in Fish (like abc == def in other
I am trying to compare two variables in which are usually strings. These variables
I'm trying to compare two different column types (not my doing, part of a
I want to compare two strings for equality when either or both can be
I want to compare two strings in a python unittest which contain html. Is
I want to be able to compare two text string and display the difference
I am trying to compare two arrays that always have different dimensions. eg. arr1

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.