JavaScript mendapatkan 10 karakter string pertama
var str = "Hello world That is reallly neat!";
var res = str.substring(0, 5);//get first 5 chars
Grepper
var str = "Hello world That is reallly neat!";
var res = str.substring(0, 5);//get first 5 chars
var str = "Hello world!";
var res = str.substring(1, 4); //ell
const str = 'Mozilla';
console.log(str.substring(1, 3));
// expected output: "oz"
console.log(str.substring(2));
// expected output: "zilla"
const str = 'substr';
console.log(str.substr(1, 2)); // (1, 2): ub
console.log(str.substr(1)); // (1): ubstr
/* Percorrendo de trás para frente */
console.log(str.substr(-3, 2)); // (-3, 2): st
console.log(str.substr(-3)); // (-3): str
string a = "String";
string b = a.Replace("i", "o"); // Strong
b = a.Insert(0, "My "); // My String
b = a.Remove(0, 3); // ing
b = a.Substring(0, 3); // Str
b = a.ToUpper(); // STRING
int i = a.Length; // 6
let text = "Microsoft Google";
text.substr(2, 10);