Instance Methodscinfu.swiftsoup 2.8.7SwiftSoup
consumeToAny(_:)
CharacterReader.swift:162func consumeToAny(_ chars: ParsingStrings) -> String func consumeToAny(_ chars: ParsingStrings) -> String s9SwiftSoup15CharacterReaderC12consumeToAnyySSAA14ParsingStringsVF What are these?WUVUimport SwiftSoupfinal class CharacterReaderstruct ParsingStrings@frozen struct StringA Unicode string value that is a collection of characters.
convenience init(_ input: String) init(_ input: [UInt8]) static let EOF: UnicodeScalarstatic let dataTerminators: ParsingStringsstatic let tagNameTerminators: ParsingStringsvar debugDescription: String { get }let end: [UInt8].Indexlet input: [UInt8]var pos: [UInt8].Indexfunc advance() @discardableResult func consume() -> UnicodeScalar func consumeAsString() -> String func consumeData() -> ArraySlice<UInt8> func consumeDigitSequence() -> ArraySlice<UInt8> func consumeHexSequence() -> ArraySlice<UInt8> func consumeLetterSequence() -> ArraySlice<UInt8> func consumeLetterThenDigitSequence() -> ArraySlice<UInt8> func consumeTagName() -> ArraySlice<UInt8> func consumeTo(_ seq: String) -> String func consumeTo(_ seq: [UInt8]) -> ArraySlice<UInt8> func consumeTo(_ c: UnicodeScalar) -> ArraySlice<UInt8> func consumeToAny(_ chars: ParsingStrings) -> ArraySlice<UInt8> func consumeToEnd() -> String func consumeToEndUTF8() -> ArraySlice<UInt8> func containsIgnoreCase(_ seq: String) -> Bool func containsIgnoreCase(_ seq: [UInt8]) -> Bool func current() -> UnicodeScalar func currentUTF8() -> ArraySlice<UInt8> func getPos() -> Int func isEmpty() -> Bool func markPos() @discardableResult func matchConsume(_ seq: [UInt8]) -> Bool @discardableResult func matchConsumeIgnoreCase(_ seq: [UInt8]) -> Bool func matches(_ c: UnicodeScalar) -> Bool func matches(_ seq: String, ignoreCase: Bool = false, consume: Bool = false) -> Bool func matches(_ seq: [UInt8], ignoreCase: Bool = false, consume: Bool = false) -> Bool func matchesAny(_ seq: ParsingStrings) -> Bool func matchesAny(_ seq: [[UInt8]]) -> Bool func matchesAny(_ seq: [UInt8]...) -> Bool func matchesAny(_ seq: [UnicodeScalar]) -> Bool func matchesAny(_ seq: UnicodeScalar...) -> Bool func matchesDigit() -> Bool func matchesIgnoreCase(_ seq: String) -> Bool func matchesIgnoreCase(_ seq: [UInt8]) -> Bool func matchesLetter() -> Bool func nextIndexOf(_ seq: String) -> String.UTF8View.Index? func nextIndexOf(_ c: UnicodeScalar) -> String.UTF8View.Index? func nextIndexOf(_ targetUtf8: [UInt8]) -> [UInt8].Index? func rewindToMark() func toString() -> String func unconsume()