Question how to replace last character string

Hi,

Could someone help me how to replace last character string.

For example

$>export T1=abcde
$>export T2=xyz

my question is how to get result abcdxyz?

Many Thanks

Try...

echo ${T1%?}$T2

I think you get more information on google.Google gives better explanation.