Ruby StringScanner post_match函数

Ruby StringScanner post_match函数

StringScanner#post_match() : post_match()是StringScanner类的一个方法,用于返回最后一次扫描的后匹配(正则表达式意义上)。

语法。StringScanner.post_match()

参数。StringScanner的值

返回:最后一次扫描的后匹配(正则表达式意义上的)。

例子 #1 :

# Ruby code for StringScanner.post_match() method
  
# loading StringScanner
require 'strscan'
  
# declaring StringScanner 
c = StringScanner.new("Mon Sep 12 2018 14:39")
  
c.scan(/\w+/) 
# post_match() method
puts "String Scanner post_match form : #{c.post_match()}\n\n"
  
c.scan(/\s+/)
# post_match() method
puts "String Scanner post_match form : #{c.post_match()}\n\n"

输出:

String Scanner post_match form :  Sep 12 2018 14:39

String Scanner post_match form : Sep 12 2018 14:39

例子 #2 :

# Ruby code for StringScanner.post_match() method
  
# loading StringScanner
require 'strscan'
  
# declaring StringScanner 
c = StringScanner.new("h ello geeks")
  
c.scan(/\w+/) 
# post_match() method
puts "String Scanner post_match form : #{c.post_match()}\n\n"
  
c.scan(/\s+/)
# post_match() method
puts "String Scanner post_match form : #{c.post_match()}\n\n"

输出:

String Scanner post_match form :  ello geeks

String Scanner post_match form : ello geeks

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程