1.9 模式下的 JRuby 1.6.1 字符串函数

发布于 2024-11-11 17:08:05 字数 530 浏览 3 评论 0原文

我刚刚升级到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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

廻憶裏菂餘溫 2024-11-18 17:08:05

我相当确定这是一个 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文