StringScanner#search_full():search_full()是StringScanner方法,它掃描字符串直到匹配模式。
用法:StringScanner.search_full()
參數:StringScanner值
圖案
advance_pointer
return_pointer
返回:如果return_string_p為true,則匹配的字符串,否則返回高級字節數
示例1:
# Ruby code for StringScanner.search_full() method
# loading StringScanner
require 'strscan'
# declaring StringScanner
c = StringScanner.new("Mon Sep 12 2018 14:39")
# search_full() method
c.search_full(/\w+/, 2, 3)
puts "String Scanner result of c.search_full() form : #{c.pos()}\n\n"
# search_full() method
c.search_full(/\s+/, 4, 8)
puts "String Scanner result of c.search_full() form : #{c.pos()}\n\n"
輸出:
String Scanner result of c.search_full() form : 3 String Scanner result of c.search_full() form : 4
示例2:
# Ruby code for StringScanner.search_full() method
# loading StringScanner
require 'strscan'
# declaring StringScanner
c = StringScanner.new("h ello geeks")
# search_full() method
c.search_full(/\w+/, 2, 3)
puts "String Scanner result of c.search_full() form : #{c.pos()}\n\n"
search_full() method
c.search_full(/\s+/, 4, 8)
puts "String Scanner result of c.search_full() form : #{c.pos()}\n\n"
輸出:
String Scanner result of c.search_full() form : 1 String Scanner result of c.search_full() form : 2
相關用法
- Ruby StringScanner eos?用法及代碼示例
- Ruby StringScanner pos=用法及代碼示例
- Ruby StringScanner pos用法及代碼示例
- Ruby StringScanner matched?用法及代碼示例
- Ruby StringScanner post_match用法及代碼示例
- Ruby StringScanner pointer=用法及代碼示例
- Ruby StringScanner beginning_of_line?用法及代碼示例
- Ruby StringScanner charpos用法及代碼示例
- Ruby StringScanner pre_match用法及代碼示例
- Ruby StringScanner rest用法及代碼示例
- Ruby StringScanner get_byte用法及代碼示例
- Ruby StringScanner getch用法及代碼示例
- Ruby StringScanner getbyte用法及代碼示例
- Ruby StringScanner restsize用法及代碼示例
- Ruby StringScanner rest?用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | StringScanner search_full function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。