1.9 模式下的 JRuby 1.6.1 字符串函数
我刚刚升级到jruby 1.6.1,当我在1.9模式下运行时,以下函数在遇到某些字符时会失败。该函数的作用是去除不需要的字符以及前导和尾随字符。我将以下函数添加到字符串类中:
class String
def strip_noise()
return if empty?
self.force_encoding('utf-8').mb_chars.normalize(:kd).gsub(/[^\x00-\x7F]/n,'').to_s().strip()
end
end
我有以下导致错误发生的测试:
def test_odd_characters()
assert_equal("", " \xC2\xA0".strip_noise())
end
当我运行测试时,我得到一个 Java::JavaLang::NegativeArraySizeException: 。
这是 jruby 的错误吗?或者有人可以帮我提供更好的解决方案吗?
I have just upgraded to jruby 1.6.1 and when I run in 1.9 mode, the following function fails when it encounters certain charaters. The job of the function is to strip out unwanted characters and also leading and trailing characters. I am adding the following function to the string class:
class String
def strip_noise()
return if empty?
self.force_encoding('utf-8').mb_chars.normalize(:kd).gsub(/[^\x00-\x7F]/n,'').to_s().strip()
end
end
I have the following test that causes the error to happen:
def test_odd_characters()
assert_equal("", " \xC2\xA0".strip_noise())
end
I get a Java::JavaLang::NegativeArraySizeException: when I run the test.
Is this a bug with jruby or can anyone help me out with a better solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相当确定这是一个 jruby bug,因为它可以在正常的 ruby 1.9.2 中工作,我创建了以下 吉拉。
I am fairly sure this is a jruby bug as it works in normal ruby 1.9.2, I have created the following jira.