How to produce substrings
Mostrar comentarios más antiguos
Write a single MATLAB statement that will accomplish the stated purpose. Assume a text string TS1 has already been defined. Find all occurrences of the string @3G in string TS1 and place the locations of the first character of each such substring (@) into Str3G. Example: TS1='%@3Gb6kl@3G9@33G' returns Str3G=[2 9].
Respuestas (1)
Star Strider
el 21 de En. de 2016
Use strfind:
TS1='%@3Gb6kl@3G9@33G'
Str3G = strfind(TS1, '@3G')
Str3G =
2 9
Categorías
Más información sobre Characters and Strings en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!