Skip to content

Instantly share code, notes, and snippets.

@hakanai
Created July 16, 2010 05:56
Show Gist options
  • Select an option

  • Save hakanai/477995 to your computer and use it in GitHub Desktop.

Select an option

Save hakanai/477995 to your computer and use it in GitHub Desktop.
irb(main):001.0> JRUBY_VERSION
=> "1.5.1"
irb(main):002:0> test = "| 12345678 | 123456789 |"
=> "| 12345678 | 123456789 |"
irb(main):003:0> test.gsub(/(\d\s*){9,}/, 'XXX')
=> "| XXX | XXX|"
irb(main):004:0> test.gsub(/(\d\s*?){9,}/, 'XXX')
=> "| XXX| XXX |"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment