teststr = "[email protected]" puts /[^@]/.match(teststr)
为什么输出 d ,而不是 dfas??
我在 http://www.rubular.com/ 这个网站测试又都显示对的选择
puts /[^@]+/.match(teststr)`
puts /[^@]+/.match(teststr)
#1 楼 @AlphaLiu 多谢。。刚在瞎试试出来了。。