Answers for "SUBSTRING JAVAS"

18

javascript get first 10 characters of string

var str = "Hello world That is reallly neat!";
var res = str.substring(0, 5);//get first 5 chars
Posted by: Guest on July-09-2019
31

substring javascript

var str = "Hello world!";
var res = str.substring(1, 4); //ell
Posted by: Guest on December-25-2019
9

how to substring in java

class scratch{
    public static void main(String[] args) {
        String hey = "Hello World";
        System.out.println( hey.substring(0, 5) );
        // prints Hello;
    }
}
Posted by: Guest on January-08-2020
5

javascript substring

// zero-based index, 'end' is excluded from result
myString.substring( start, end )
Posted by: Guest on December-04-2020
0

str.substring if 2 letters

public String firstTwo(String str) {
    return str.length() < 2 ? str : str.substring(0, 2);
}
Posted by: Guest on September-19-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language