method

post_match

v1_8_7_72 - Show latest stable - Class: StringScanner
post_match()
public

Return the post-match (in the regular expression sense) of the last scan.

  s = StringScanner.new('test string')
  s.scan(/\w+/)           # -> "test"
  s.scan(/\s+/)           # -> " "
  s.pre_match             # -> "test"
  s.post_match            # -> "string"