mindspore.dataset.text.transforms.RegexReplace
- class mindspore.dataset.text.transforms.RegexReplace(pattern, replace, replace_all=True)[source]
Replace UTF-8 string tensor with ‘replace’ according to regular expression ‘pattern’.
See http://userguide.icu-project.org/strings/regexp for support regex pattern.
Note
RegexReplace is not supported on Windows platform yet.
- Parameters
Examples
>>> pattern = 'Canada' >>> replace = 'China' >>> replace_op = text.RegexReplace(pattern, replace) >>> text_file_dataset = text_file_dataset.map(operations=replace_op)