javascript take part of string code example
Example 1: get part of string javascript
var str="123 - aaaaa"
var num = str.slice(0,3)
var name= str.slice(6)
Example 2: short string javascript
short = long.replace(/(.{7})..+/, "$1…");
Example 3: cut string from string javascript
var ret = "data-123".replace('data-','');
console.log(ret);
Example 4: straforma in string js
var x = new String("Una nuova stringa");
Example 5: reactjs cut part of string
var str = "Hello world!";
var res = str.substring(1, 4);