mirror of
https://github.com/ruby/ruby.git
synced 2026-01-29 05:24:23 +00:00
338 B
338 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