我觉得我在这里错误地使用Ruby:我想为正则表达式生成所有可能的匹配项 /[0-9A-Za-z]{3}/
我不能用succ因为"999".succ => "1000"而且"zZz".succ => "aaAa".我在使用范围时遇到了麻烦,因为我似乎无法结合(0..9), ('A'..'Z'), ('a'..'z')
所以我写道:
def alphaNumeric
#range and succ don't cut it for [0-9a-zA-Z]
(0..9).each{|x|yield x.to_s}
('a'..'z').each{|x|yield x}
('A'..'Z').each{|x|yield x}
end
def alphaNumericX3
alphaNumeric{ |a|
alphaNumeric{ |b|
alphaNumeric{ |c|
yield a+b+c
}
}
}
end
alphaNumericX3.each{|x|p x}
Run Code Online (Sandbox Code Playgroud)
我的问题是2折:
是否有一种不那么丑陋的方式,有没有一种方法alphaNumericX3可以从参数中定义(alphaNumeric, 3)?
PS我知道我可以为范围定义一个新类.但那肯定不会缩短.如果您可以使下一个块比上面的块更短更清晰,请执行以下操作:
class AlphaNum
include Comparable
attr :length
def initialize(s)
@a=s.chars.to_a
@length=@a.length
end
def to_s
@a.to_s
end
def <=>(other)
@a.to_s <=> other.to_s
end
def succ
def inc(x,n)
return AlphaNum.new('0'*(@length+1)) if x<0
case n[x]
when '9'
n[x]='A'
when 'Z'
n[x]='a'
when 'z'
n[x]='0'
return inc(x-1,n)
else
n[x]=n[x].succ
end
return AlphaNum.new(n.to_s)
end
inc(@length-1,@a.clone)
end
end
# (AlphaNum.new('000')..AlphaNum.new('zzz')).each{|x|p x}
# === alphaNumericX3.each{|x|p x}
Run Code Online (Sandbox Code Playgroud)
alpha_numerics = ('0'..'9').to_a + ('a'..'z').to_a + ('A'..'Z').to_a
alpha_numerics
.product(alpha_numerics, alpha_numerics)
.map { |triplet| triplet.join('') }
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1039 次 |
| 最近记录: |