javascript string get last two character
var member = "my name is Mate";
var last2 = member.slice(-2);
alert(last2); // "te"
javascript string get last two character
var member = "my name is Mate";
var last2 = member.slice(-2);
alert(last2); // "te"
java get last char of string
public class Test {
public static void main(String args[]) {
String string = args[0];
System.out.println("last character: " +
string.substring(string.length() - 1));
}
}
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)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us