function removeFirstOccurrences(str, value) {
return str.replace(РЕГУЛЯРКА, '');
}
removeFirstOccurrences('I like legends end', 'end') - чтобы было 'I like legs'
removeFirstOccurrences('me not love you ', 'not') - чтобы было 'me love you '
function removeFirstOccurrences(str, value) {
return str.replace(new RegExp('\\b' + value + '\\b'), '');
}