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


Ruby StringScanner getbyte用法及代码示例


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

用法:StringScanner.getbyte()

参数:StringScanner值


返回:StringScanner上的指针字节。

示例1:

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

输出:

String Scanner getbyte form : M

String Scanner getbyte form : o

String Scanner getbyte form : n

示例2:

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

输出:

String Scanner getbyte form : h

String Scanner getbyte form : e

String Scanner getbyte form : l


相关用法


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