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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T19:26:56+00:00 2026-06-09T19:26:56+00:00

I’m using Rails 3.2.3 with Ruby 1.9.3p0. I’m finding that I often have to

  • 0

I’m using Rails 3.2.3 with Ruby 1.9.3p0.

I’m finding that I often have to determine whether a string occurs in a list of options. It seems I can use the Ruby array .include method:

<% if ['todo','pending','history'].include?(params[:category]) %>

or the regular expression equals-tilde match shorthand with vertical bars separating options:

<% if params[:category] =~ /todo|pending|history/ %>

Is one better than the other in terms of performance?

Is there an even better approach?

  • 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-09T19:26:58+00:00Added an answer on June 9, 2026 at 7:26 pm

    Summary: Array#include? with String elements wins for both accepted and rejected inputs, for your example with only three acceptable values. For a larger set to check, it looks like Set#include? with String elements might win.


    How to Test

    We should test this is empirically.

    Here are a couple of alternatives that you may want to consider as well: pre-compiled regex, a list of symbols, and a Set with String elements.

    I would imagine that the performance may also depend on whether most of your inputs fall into the expected set, and are accepted, or whether most are outside the set, and are rejected.

    Here’s an empirical test script:

    require 'benchmark'
    require 'set'
    
    strings = ['todo','pending','history']
    string_set = Set.new(strings)
    symbols = strings.map(&:to_sym)
    regex_compiled = Regexp.new(strings.join("|"))
    
    strings_avg_size = (strings.map(&:size).inject {|sum, n| sum + n}.to_f / strings.size).to_i
    num_inputs = 1_000_000
    
    accepted_inputs = (0...num_inputs).map { strings[rand(strings.size)] } 
    rejected_inputs = (0...num_inputs).map { (0..strings_avg_size).map { ('a'...'z').to_a[rand(26)] }.join }
    
    Benchmark.bmbm(40) do |x|
      x.report("Array#include?, Strings, accepted:") { accepted_inputs.map {|s| strings.include?(s) } }
      x.report("Array#include?, Strings, rejected:") { rejected_inputs.map {|s| strings.include?(s) } }
      x.report("Array#include?, Symbols, accepted:") { accepted_inputs.map {|s| symbols.include?(s.to_sym) } }
      x.report("Array#include?, Symbols, rejected:") { rejected_inputs.map {|s| symbols.include?(s.to_sym) } }
      x.report("Set#include?, Strings, accepted:") { accepted_inputs.map {|s| string_set.include?(s) } }
      x.report("Set#include?, Strings, rejected:") { rejected_inputs.map {|s| string_set.include?(s) } }
      x.report("Regexp#match, interpreted, accepted:") { accepted_inputs.map {|s| s =~ /todo|pending|history/ } }
      x.report("Regexp#match, interpreted, rejected:") { rejected_inputs.map {|s| s =~ /todo|pending|history/ } }
      x.report("Regexp#match, compiled, accepted:") { accepted_inputs.map {|s| regex_compiled.match(s) } }
      x.report("Regexp#match, compiled, rejected:") { rejected_inputs.map {|s| regex_compiled.match(s) } }
    end
    

    Results

    Rehearsal ---------------------------------------------------------------------------
    Array#include?, Strings, accepted:        0.210000   0.000000   0.210000 (  0.215099)
    Array#include?, Strings, rejected:        0.530000   0.010000   0.540000 (  0.543898)
    Array#include?, Symbols, accepted:        0.330000   0.000000   0.330000 (  0.337767)
    Array#include?, Symbols, rejected:        1.870000   0.050000   1.920000 (  1.923155)
    Set#include?, Strings, accepted:          0.270000   0.000000   0.270000 (  0.274774)
    Set#include?, Strings, rejected:          0.460000   0.000000   0.460000 (  0.463925)
    Regexp#match, interpreted, accepted:      0.380000   0.000000   0.380000 (  0.382060)
    Regexp#match, interpreted, rejected:      0.650000   0.000000   0.650000 (  0.660775)
    Regexp#match, compiled, accepted:         1.130000   0.080000   1.210000 (  1.220970)
    Regexp#match, compiled, rejected:         0.630000   0.000000   0.630000 (  0.640721)
    ------------------------------------------------------------------ total: 6.600000sec
    
                                                  user     system      total        real
    Array#include?, Strings, accepted:        0.210000   0.000000   0.210000 (  0.219060)
    Array#include?, Strings, rejected:        0.430000   0.000000   0.430000 (  0.444911)
    Array#include?, Symbols, accepted:        0.340000   0.000000   0.340000 (  0.341970)
    Array#include?, Symbols, rejected:        1.080000   0.000000   1.080000 (  1.089961)
    Set#include?, Strings, accepted:          0.270000   0.000000   0.270000 (  0.281270)
    Set#include?, Strings, rejected:          0.400000   0.000000   0.400000 (  0.406181)
    Regexp#match, interpreted, accepted:      0.370000   0.000000   0.370000 (  0.366931)
    Regexp#match, interpreted, rejected:      0.560000   0.000000   0.560000 (  0.558652)
    Regexp#match, compiled, accepted:         0.920000   0.000000   0.920000 (  0.915914)
    Regexp#match, compiled, rejected:         0.620000   0.000000   0.620000 (  0.627620)
    

    Conclusions

    (see the Summary above)

    It makes sense to me, upon reflection, that the Array of Symbols would be very slow for rejected inputs, because every single one of those random strings must be interned in the Symbol table before the check can be made.

    It makes less sense to me, even after pondering, that the compiled Regexp would perform so badly, especially compared to the Regexp interpreted as a literal in the code. Can anyone explain why it does so badly?

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

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into
We're building an app, our first using Rails 3, and we're having to build
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have thousands of HTML files to process using Groovy/Java and I need to
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) 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.