How to place the last alphabetic character from TS1
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
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. Place the last alphabetic character in TS1 into LastLetter. Example: TS1='%@3Gb6' returns LastLetter=b.
2 comentarios
Respuestas (1)
TS1='%@3Gb6';
Lastletter = TS1(max(regexp(TS1, '[a-zA-Z]')))
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!