XMLIterator class for parsing XML strings.

XML迭代器类,用于解析XML字符串。

构造函数

属性

attrParsed: boolean

Indicates whether attributes have been parsed.

指示是否已解析属性。

lastTagEnd: number

The ending position of the last processed tag.

上一个处理的标签的结束位置。

lastTagName: string

The name of the last processed XML tag.

上一个处理的XML标签的名称。

lowerCaseName: boolean

Indicates whether tag names should be converted to lowercase.

指示是否应将标签名称转换为小写。

parsePos: number

The current parsing position in the source string.

源字符串中的当前解析位置。

source: string

The source XML string being parsed.

正在解析的源XML字符串。

sourceLen: number

The length of the source XML string.

源XML字符串的长度。

tagLength: number

The length of the current tag.

当前标签的长度。

tagName: string

The name of the current XML tag.

当前XML标签的名称。

tagPos: number

The starting position of the current tag in the source string.

当前标签在源字符串中的起始位置。

tagType: XMLTagType

The type of the current XML tag.

当前XML标签的类型。

访问器

方法

  • 参数

    • source: string

      The XML string to parse.

    • 可选lowerCaseName: boolean

      Optional. Whether to convert tag names to lowercase.

    返回 void

    Initialize the XMLIterator with a source string.

    使用源字符串初始化XMLIterator。

  • 参数

    • attrName: string

      The name of the attribute to get.

    返回 string

    The value of the attribute.

    Gets the value of the specified attribute from the current tag.

    从当前标签获取指定属性的值。

  • 参数

    • 可选trim: boolean

      Whether to trim the whitespace characters at the beginning and end of the text.

    返回 string

    The raw text, trimmed if specified.

    Gets the raw text between the last tag end and the current tag position.

    获取上一个标签结束和当前标签位置之间的原始文本。

  • 返回 string

    The source of the current XML tag.

    Get the source of the current XML tag.

    获取当前XML标签的源代码。

  • 参数

    • 可选trim: boolean

      Whether to trim the whitespace at the beginning and end of the text. Default is false.

    返回 string

    The decoded text between XML tags.

    Get the decoded text between XML tags, optionally trimmed.

    获取XML标签之间的解码文本,可选择是否去除首尾空白字符。

  • 返回 boolean

    Returns true if a new tag is found; otherwise, false if the end of the source is reached.

    Parses through the XML source to find the next tag and updates the iterator's state accordingly.

    解析XML源,查找下一个标签并相应地更新迭代器的状态。

  • 参数

    • attrs: any

      The object to store the parsed attributes.

    返回 void

    Parses the attributes from the source text.

    从源文本解析属性。