substring javasript code example

Example 1: js substring

// the substring method returns a string out of another string

const str = 'Mozilla';

console.log(str.substring(1, 3));
// expected output: "oz"

console.log(str.substring(2));
// expected output: "zilla"

Example 2: str.substring if 2 letters

public String firstTwo(String str) {
    return str.length() < 2 ? str : str.substring(0, 2);
}

Example 3: cut string from string javascript

var ret = "data-123".replace('data-','');
console.log(ret);   //prints: 123

Tags:

Cpp Example