The DOMCharacterData object represents character data in an XML document.
The DOMCharacterData object inherits the properties and methods of the DOMNode object.
Instance Properties
data |
A string denoting the text represented. |
length |
An integer equal to the number of characters in the text represented. | |
Instance Methods
substringData |
Returns a portion of the text represented by the DOMCharacterData object. |
appendData |
Appends a string to the text represented. |
insertData |
Inserts a string at a specified place in the represented text. |
deleteData |
Removes a portion of the text represented. |
replaceData |
Replaces text in the represented text. | |