Ниже приведен положительный обзор альтернативы JavaScript, показывающий, как записать фамилию людей с именем «Майкл» в качестве имени.
1) С учетом этого текста:
const exampleText = "Michael, how are you? - Cool, how is John Williamns and Michael Jordan? I don't know but Michael Johnson is fine. Michael do you still score points with LeBron James, Michael Green Miller and Michael Wood?";
getмассив фамилий людей по имени Майкл.Результат должен быть: ["Jordan","Johnson","Green","Wood"]
2) Решение:
function getMichaelLastName2(text) {
return text
.match(/(?:Michael )([A-Z][a-z]+)/g)
.map(person => person.slice(person.indexOf(' ')+1));
}
// or even
.map(person => person.slice(8)); // since we know the length of "Michael "
3) Проверить решение
console.log(JSON.stringify( getMichaelLastName(exampleText) ));
// ["Jordan","Johnson","Green","Wood"]
Демо здесь: http://codepen.io/PiotrBerebecki/pen/GjwRoo
Вы также можете попробовать его, запустив фрагмент ниже.
const inputText = "Michael, how are you? - Cool, how is John Williamns and Michael Jordan? I don't know but Michael Johnson is fine. Michael do you still score points with LeBron James, Michael Green Miller and Michael Wood?";
function getMichaelLastName(text) {
return text
.match(/(?:Michael )([A-Z][a-z]+)/g)
.map(person => person.slice(8));
}
console.log(JSON.stringify( getMichaelLastName(inputText) ));