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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T10:15:32+00:00 2026-05-31T10:15:32+00:00

In the following, lines 29 and 35 are exactly the same. Why are their

  • 0

In the following, lines 29 and 35 are exactly the same. Why are their return value different?

27: str = "ABC123"
    #=> "ABC123"
29: "It's a match" if ( str.to_s =~ /w+/ )
    #=> nil
30: "It's a match" if ( str.to_s =~ /[a-z]/ )
    #=> nil
31: "It's a match" if ( str.to_s =~ /[a-zA-Z]/ )
    #=> It's a match
32: "It's a match" if ( str.to_s =~ /[a-z]/ )
    #=> nil
33: "It's a match" if ( str.to_s =~ /[\w+\W+]/ )
    #=> It's a match
34: "It's a match" if ( str.to_s =~ /[\w+]/ )
    #=> It's a match
35: "It's a match" if ( str.to_s =~ /\w+/ )
    #=> It's a match
36: "It's a match" if ( str =~ /\w+/ )
    #=> It's a match

My initial answer is that one of my expressions that evaluated to true assigned the true to str. That just wouldn’t make sense, though. My working environment is Ruby 1.9.1 with Rails 3.0.10.

  • 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-31T10:15:33+00:00Added an answer on May 31, 2026 at 10:15 am

    In line 29 you forgot to put \ before w+.

    puts "It's a match" if str =~ /\w+/
    

    Gentle remarks: you don’t need brackets in this case and you don’t need .to_s as str is already a string.

    puts "It's a match" if str =~ /[a-z]/i # i makes it case insensetive
    

    Also in irb it is just easier to use either str =~ /\w+/ or even str[/\w+/] to see the result.

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

Sidebar

Related Questions

The following lines work when I enter them by hand on the Scala REPL
Encounter following lines of code, but couldn't understand it. What is this (/ ...
I am using the following lines of code to download and save an html
I'm using the following lines of code in my .htaccess file to create redirects.
Consider the following lines of jQuery: var $s = $('<span><span class=one><span class=two></span></span></span>'); $('.one', $s).css('border',
I found the following lines in a makefile tutorial, but I have some problem
I have the following lines in my .zshrc source /etc/profile source $HOME/.profile My .profile
In the following lines of code, I need to adjust the pointer pm by
why do the following lines not work as I expect? import numpy as np
I have the following lines of code: if(std::binary_search(face_verts.begin(), face_verts.end(), left_right_vert[0]) && std::binary_search(face_verts.begin(), face_verts.end(), left_right_vert[1]))

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.