当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby StringScanner get_byte用法及代码示例


StringScanner#get_byte():get_byte()是一个StringScanner类方法,它返回StringScanner上的指针字节。

用法:StringScanner.get_byte()

参数:StringScanner值


返回:StringScanner上的指针字节。

示例1:

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

输出:

String Scanner get_byte form : M

String Scanner get_byte form : o

String Scanner get_byte form : n

示例2:

# Ruby code for StringScanner.get_byte() method 
  
# loading StringScanner 
require 'strscan'
  
# declaring StringScanner  
c = StringScanner.new("hellogeeks") 
  
# get_byte() method 
puts "String Scanner get_byte form : #{c.get_byte()}\n\n"
  
# get_byte() method 
puts "String Scanner get_byte form : #{c.get_byte()}\n\n"
  
# get_byte() method 
puts "String Scanner get_byte form : #{c.get_byte()}\n\n"

输出:

String Scanner get_byte form : h

String Scanner get_byte form : e

String Scanner get_byte form : l


相关用法


注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | StringScanner get_byte function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。