Last substring of string
Posted
by javaguy
on Stack Overflow
See other posts from Stack Overflow
or by javaguy
Published on 2010-05-04T20:59:08Z
Indexed on
2010/05/04
21:08 UTC
Read the original article
Hit count: 172
In java we have indexOf
and lastIndexOf
. Is there anythink like lastSubstring
? It should work like :
"aaple".lastSubstring(0, 1) = "e";
© Stack Overflow or respective owner