4

这应该很容易......我正在尝试用 ruby​​ 匹配 css 文件中连续的 3 个十六进制数字。这就是我所拥有的..

File.open(ARGV[0], 'r') do |source|
  source.each { |line|
  puts line if line =~ /\h{3}/
}
end

这不会在具有多个此类值的文件中返回任何内容。如果我将 line 更改为,line =~ /\h/那么几乎每一行都会返回。我知道我必须缺少一些基本的东西,但它是什么?

编辑。这是一些示例输入。有效的十六进制颜色当然可以是三个十六进制值组合,但现在我只关心六个值的组合。

#captcha fieldset{border-top:1px solid #c0c0c0;border-bottom:1px solid#c0c0c0;margin:0;padding:10px}
#captcha legend{color:gray}
#captcha .divider{display:none}
#captcha .captcha_refresh{font-size: 9px;color:gray}
#captcha .captcha_other_options{padding-top:5px;font-size: 9px}
#captcha .recaptcha_text{font-size: 11px;line-height:16px}
#captcha .captcha_optout{font-size: 11px;padding:10px 0 5px}
#captcha #recaptcha_image{font-weight:bold;margin:10px 0 0 0}
#captcha #recaptcha_image a.recaptcha_audio_cant_hear_link{font-size: 9px;font-weight:normal}
#captcha .captcha_loading{border:0}
#captcha .captcha_image img{border:1px solid #c0c0c0}
#captcha .captcha_input input{direction:ltr;margin-top:4px;width:137px}
#captcha .captcha_input label{margin-right:4px}
.register #captcha .captcha_input label{color:#666;font-weight:bold}
#generic_dialog.captcha .generic_dialog_popup{width:340px}
4

1 回答 1

6

这个如何?

/(?<=#)(?<!^)\h{3}/

如果您想要 3 或 6 个字符,则使用此变体...

/(?<=#)(?<!^)(\h{6}|\h{3})/

控制台测试

1.9.3p392 :002 > css = "#captcha fieldset{border-top:1px solid #c0c0c0;border-bottom:1px solid#c0c0c0;margin:0;padding:10px}"
 => "#captcha fieldset{border-top:1px solid #c0c0c0;border-bottom:1px solid#c0c0c0;margin:0;padding:10px}"
1.9.3p392 :003 > css.scan(/(?<=#)(?<!^)(\h{6}|\h{3})/)
 => [["c0c0c0"], ["c0c0c0"]]
于 2013-04-01T02:54:20.237 回答