Project

General

Profile

Actions

Bug #910

closed

optparse with regexp

Added by rubikitch (rubikitch .) over 15 years ago. Updated almost 13 years ago.

Status:
Closed
ruby -v:
Backport:
[ruby-dev:37515]

Description

=begin
optparseでオプション引数にマッチすべき正規表現を指定した場合の挙動が変わっています。

#!/usr/local/bin/ruby
require 'optparse'
opts = {}
ARGV.options do |o|
o.on("-T [level]", /^[0-4]$/) {|x| opts[:T] = x }
o.parse!
end
puts "opts=#{opts.inspect}"

$ ruby187p72 -v optparse-regexp.rb -T1
ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-linux]
opts={:T=>"1"}
$ ruby19 -v optparse-regexp.rb -T1
ruby 1.9.1 (2008-12-20 revision 20892) [i686-linux]
opts={:T=>["1"]}
=end


Related issues 1 (0 open1 closed)

Related to Ruby 1.8 - Bug #909: optparse with regexpClosed12/20/2008Actions
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0