當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Julia skipchars用法及代碼示例


用法:

skipchars(predicate, io::IO; linecomment=nothing)

推進流io,使next-read字符成為predicate返回false的第一個剩餘字符。如果指定了關鍵字參數linecomment,則忽略從該字符到下一行開始的所有字符。

例子

julia> buf = IOBuffer("    text")
IOBuffer(data=UInt8[...], readable=true, writable=false, seekable=true, append=false, size=8, maxsize=Inf, ptr=1, mark=-1)

julia> skipchars(isspace, buf)
IOBuffer(data=UInt8[...], readable=true, writable=false, seekable=true, append=false, size=8, maxsize=Inf, ptr=5, mark=-1)

julia> String(readavailable(buf))
"text"

相關用法


注:本文由純淨天空篩選整理自julialang.org 大神的英文原創作品 Base.skipchars — Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。