Answers for "get last number in string"

13

check last character of string java

String str = "India";
System.out.println("last char = " + str.charAt(str.length() - 1));
Posted by: Guest on March-23-2020
0

Complete the function to return the last X number of characters in the given string

def getLast(mystring, x):
    y=len(mystring) - x                  #finding index from where the string needs to be printed
    for i in range(y,(len(mystring))):   # printing from y index to end of string
        print(mystring[i],end="")
    
getLast('WGU College of IT', 13)
Posted by: Guest on February-03-2021

Code answers related to "get last number in string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language