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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T18:41:43+00:00 2026-05-20T18:41:43+00:00

I want to do a sequence of gsub s against one string, so I

  • 0

I want to do a sequence of gsubs against one string, so I utilized the fact that gsub can take a hash as the second argument. One thing I wanted to do with gsub is to convert a sequence of one or more space/tab into a single space, so I have something essentially as follows:

gsub(/[ \t]+/, {/[ \t]+/ => ' '})

In my actual code, the first argument is a union of the regexp I gave here, and the second argument includes more key-value pairs.

Now, when I apply this to a string, all of the space/tabs are deleted. I suppose this is because the match to the first argument is not regarded as matching to the key [ \t] in the second argument (hash). Does the match in the second argument hash only looks for exact string match, not regexp match? If so, is there any way to get around it?

  • 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-20T18:41:44+00:00Added an answer on May 20, 2026 at 6:41 pm

    This is a related question. If you need to use the hash because many things have to be substituted, this might work:

    list = Hash.new{|h,k|if  /\s+/ =~ k then ' ' else k end}
    list['foo'] = 'bar'
    list['apple'] = 'banana'
    
    p "appleabc\t  \tabc  apple foo".gsub(/\w+|\W+/,list)
    #=> "appleabc abc banana bar"
    p list
    #=>{"foo"=>"bar", "apple"=>"banana"} no garbage
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make sequence diagram by using UML diagram set in Dia. Can
I want to implement a searching algorithm for sequence of words. For that i
I want to find if a string contains a repeated sequence of a known
I have an xts sequence of stock trade events that I want to process
I want to read a sequence of bytes from my accelerometer. I can't get
I have a Sequence that I want to get the length of: val x
Given a sequence (for example a string Xa), I want to get the next
I want to find a sequence of select from where in a string. For
I want to match the longest sequence that is repeating at least once Having:
I want to generate bytes sequence containing string length and string content. For example,

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.