Answers for "endswith()"

12

endswith python

str.endswith(suffix[, start[, end]])

text = "Python is easy to learn."
result = text.endswith('to learn') # False
result = text.endswith('to learn.')# True
Posted by: Guest on June-26-2020
2

javascript check if string ends with

function endsWith(str, suffix) {
    return str.indexOf(suffix, str.length - suffix.length) !== -1;
}

endsWith("hello young man","man");//true
endsWith("hello young man","boy");//false
Posted by: Guest on July-24-2019
1

endswith()

var str = "Hello world, welcome to the universe.";
var n = str.endsWith("universe.");//returns true
Posted by: Guest on May-03-2020

Browse Popular Code Answers by Language