Answers for "how to trim last 3 character in string in kotlin"

0

kotlin string remove last 3 digits

str.substring(0, str.length() - 2);
Posted by: Guest on April-16-2020

Code answers related to "how to trim last 3 character in string in kotlin"

Browse Popular Code Answers by Language