Contenuto principale

eraseURLs

Erase HTTP and HTTPS URLs from text

Description

newStr = eraseURLs(str) erases HTTP and HTTPS URLs from the elements of str.

example

newDocuments = eraseURLs(documents) erases tokens of type web-address from documents.

Examples

collapse all

Erase the URL from the text in str.

str = "For more information, see https://www.mathworks.com";
newStr = eraseURLs(str)
newStr = 
"For more information, see "

Input Arguments

collapse all

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

Input documents, specified as a tokenizedDocument array.

Data Types: tokenizedDocument

Output Arguments

collapse all

Output text, returned as a string array, character vector, or cell array of character vectors. str and newStr have the same data type.

Output text, returned as a tokenizedDocument array.

Version History

Introduced in R2017b

expand all