How to place the last alphabetic character from TS1
Info
This question is closed. Reopen it to edit or answer.
Show older comments
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 Comments
Answers (1)
TS1='%@3Gb6';
Lastletter = TS1(max(regexp(TS1, '[a-zA-Z]')))
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!