String slice

63

String slice -

string word = "hello";
string ordw = word.Substring(1) + word.Substring(0, 1);

string splice -

newStr = str.split(''); // or newStr = [...str];
newStr.splice(2,5);
newStr = newStr.join('');

Comments

Submit
0 Comments