mirror of
https://github.com/ruby/ruby.git
synced 2026-01-28 04:54:23 +00:00
(https://github.com/ruby/strscan/pull/126) Split off from https://github.com/ruby/ruby/pull/12322 https://github.com/ruby/strscan/commit/9bee37e0f5
340 B
340 B
call-seq: pos -> byte_position
Returns the integer [byte position][2], which may be different from the [character position][7]:
scanner = StringScanner.new(HIRAGANA_TEXT)
scanner.string # => "こんにちは"
scanner.pos # => 0
scanner.getch # => "こ" # 3-byte character.
scanner.charpos # => 1
scanner.pos # => 3