How to place the last alphabetic character from TS1

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.

Answers (1)

TS1='%@3Gb6';
Lastletter = TS1(max(regexp(TS1, '[a-zA-Z]')))

This question is closed.

Asked:

on 21 Jan 2016

Closed:

on 20 Aug 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!