Answers for "javascript get first word after specific word"

1

get everything after the first character javascript

var val = 'asdasd:111122:123123123';
var response = val.substring(val.indexOf(":"));

alert(response); // ":111122:123123123"
Posted by: Guest on September-16-2020
1

javascript get first letter of each word

var msg = "Name Surname a"
var acronym = msg.match(/\b(\w)/g).join('');

console.log(acronym)
Posted by: Guest on January-07-2021

Code answers related to "javascript get first word after specific word"

Code answers related to "Javascript"

Browse Popular Code Answers by Language