Answers for "java string get last substring split()"

1

split and get last

Use rev command altogether with cut command as follows:
echo "a1 a2 a3 a4 a5" | rev | cut -d ' ' -f '1' | rev
#rev reverses string, then you cut from 2th field to end and reverse back
Posted by: Guest on November-10-2020
0

str.substring last 2 java

String substring = str.length() > 2 ? str.substring(str.length() - 2) : str;
Posted by: Guest on September-19-2020

Code answers related to "java string get last substring split()"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language