Answers:
Ruby内置了以下功能:
Integer('1001') # => 1001
Integer('1001 nights')
# ArgumentError: invalid value for Integer: "1001 nights"
正如Joseph Pecoraro在回答中所指出的那样,您可能要注意查找有效的非十进制数字的字符串,例如0x
以十六进制和0b
二进制开头的字符串,以及可能更复杂的以零开头的数字,这些字符串将被解析为八进制。
Ruby 1.9.2为基数添加了可选的第二个参数,因此可以避免上述问题:
Integer('23') # => 23
Integer('0x23') # => 35
Integer('023') # => 19
Integer('0x23', 10)
# => #<ArgumentError: invalid value for Integer: "0x23">
Integer('023', 10) # => 23
这可能起作用:
i.to_i if i.match(/^\d+$/)
\z
代替,\Z
因为大写字母Z锚的描述是:“匹配字符串的末尾。如果字符串以换行符结尾,则在换行符之前匹配” – ruby-doc.org/core-2.1.1/Regexp .html
还请注意当前接受的解决方案可能会对解析十六进制,八进制和二进制数产生影响:
>> Integer('0x15')
# => 21
>> Integer('0b10')
# => 2
>> Integer('077')
# => 63
在Ruby中,以,0x
或0X
以十六进制表示的数字,0b
或0B
以二进制表示且仅以0
八进制表示的数字。如果这不是所需的行为,则可能需要将该行为与其他一些首先检查字符串是否与模式匹配的解决方案结合起来。像/\d+/
正则表达式等
可接受的解决方案的另一个意外行为(对于1.8、1.9来说可以):
>> Integer(:foobar)
=> 26017
>> Integer(:yikes)
=> 26025
因此,如果您不确定要传入的内容,请确保添加.to_s
。
我喜欢Myron的答案,但是它患有Ruby疾病,即“我不再使用Java / C#,所以我再也不会使用继承了”。打开任何类都可能充满危险,应谨慎使用,尤其是当它是Ruby核心库的一部分时。我并不是说永远不要使用它,但是通常很容易避免,并且有更好的选择,例如
class IntegerInString < String
def initialize( s )
fail ArgumentError, "The string '#{s}' is not an integer in a string, it's just a string." unless s =~ /^\-?[0-9]+$/
super
end
end
然后,当您希望使用可能是数字的字符串时,很清楚您在做什么,并且不会破坏任何核心类,例如
n = IntegerInString.new "2"
n.to_i
# => 2
IntegerInString.new "blob"
ArgumentError: The string 'blob' is not an integer in a string, it's just a string.
您可以在初始化中添加各种其他检查,例如检查二进制数等。不过,最主要的是Ruby是为人而为人的意思是清晰。通过对象的变量名和类名命名可以使事情更加清晰。
我必须在上一个项目中处理此问题,并且实现方式相似,但又有所不同:
class NotAnIntError < StandardError
end
class String
def is_int?
self =~ /^-?[0-9]+$/
end
def safe_to_i
return self.to_i if is_int?
raise NotAnIntError, "The string '#{self}' is not a valid integer.", caller
end
end
class Integer
def safe_to_i
return self
end
end
class StringExtensions < Test::Unit::TestCase
def test_is_int
assert "98234".is_int?
assert "-2342".is_int?
assert "02342".is_int?
assert !"+342".is_int?
assert !"3-42".is_int?
assert !"342.234".is_int?
assert !"a342".is_int?
assert !"342a".is_int?
end
def test_safe_to_i
assert 234234 == 234234.safe_to_i
assert 237 == "237".safe_to_i
begin
"a word".safe_to_i
fail 'safe_to_i did not raise the expected error.'
rescue NotAnIntError
# this is what we expect..
end
end
end
回复:克里斯的答案
您的实现让“ 1a”或“ b2”之类的东西通过。怎么样呢:
def safeParse2(strToParse)
if strToParse =~ /\A\d+\Z/
strToParse.to_i
else
raise Exception
end
end
["100", "1a", "b2", "t"].each do |number|
begin
puts safeParse2(number)
rescue Exception
puts "#{number} is invalid"
end
end
输出:
100
1a is invalid
b2 is invalid
t is invalid
\z
代替,\Z
因为大写字母Z锚的描述是:“匹配字符串的末尾。如果字符串以换行符结尾,则在换行符之前匹配” – ruby-doc.org/core-2.1.1/Regexp .html
^
与大多数其他正则表达式相比,元字符的$
含义略有不同。您可能打算使用\A
和\Z
代替。