From 2c8f16e6c0ca8ae886615c048ee14d362bac05f8 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 24 Apr 2018 12:25:46 +0000 Subject: string.c: fix scanned substring with `\K` * string.c (scan_once): fix the matched substring with `\K`, the beginning of that string may differ from the matched position. [ruby-core:86663] [Bug #14707] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63252 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_string.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/ruby/test_string.rb') diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb index d6356fcfa1..1a6d87f11f 100644 --- a/test/ruby/test_string.rb +++ b/test/ruby/test_string.rb @@ -1542,6 +1542,8 @@ CODE assert_nil($~) assert_equal(3, S("hello hello hello").scan("hello".taint).count(&:tainted?)) + + assert_equal(%w[1 2 3], S("a1 a2 a3").scan(/a\K./)) end def test_size -- cgit v1.2.3