decodeHTMLEntities - Convert HTML and XML entities into characters - MATLAB (original) (raw)
Main Content
Convert HTML and XML entities into characters
Syntax
Description
[newStr](#d126e14973) = decodeHTMLEntities([str](#d126e14936))
replaces HTML and XML character entities and numeric character references in the elements of str
with their Unicode equivalent.
Examples
Replace HTML character entities with their Unicode equivalent.
str = ["<>" "R&D"]; newStr = decodeHTMLEntities(str)
newStr = 1×2 string "<>" "R&D"
Replace HTML numeric character references with their Unicode equivalent. Unicode character with hex code  
is a space.
str = "R D"; newStr = decodeHTMLEntities(str)
Input Arguments
Input text, specified as a string array, character vector, or cell array of character vectors.
Example: ["An example of a short sentence."; "A second short sentence."]
Data Types: string
| char
| cell
Output Arguments
Output text, returned as a string array, character vector, or cell array of character vectors. str and newStr
have the same data type.
Version History
Introduced in R2017b