containstr
Versión 1.2.1 (7,89 KB) por
wfH
Search strings that match multiple patterns with a single line of code.
`containstr` returns TRUE if PATTERNs is found in text S.
`startswith` returns TRUE if any element of PATTERNs at the start of text S.
`endswith` returns TRUE if any element of PATTERNs at the end of text S.
Usage:
containstr(S, PATTERN)
startswith(S, PATTERN)
endswith(S, PATTERN)
--------------------------------------------------------------------------
Sometimes, I need to search strings that match multiple patterns.
The use of `strfind` (`regexp`) combing with for-loop (`cellfun`) makes the script look long and messy.
In newer version (R2016b), it is easy to do in a single line of code.
Just call the built-in functions `contains`, `startsWith`, or `endsWith`.
So, I created these functions for users with older version to search pattern in text.
These functions follow the same behaviour as Matlab's built-in.
Besides, my functions can treat search pattern as regular expression as needed.
No more for-loop is needed
Citar como
wfH (2024). containstr (https://www.mathworks.com/matlabcentral/fileexchange/70334-containstr), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Se creó con
R2017a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
Más información sobre Characters and Strings en Help Center y MATLAB Answers.
Etiquetas
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.