さっき作った (@MakeNowJust)
などなど‥‥
/\b(?<=Pokemon | Surface )Go\b/
'Go Surface Go'
.match(/\b(?<=Pokemon | Surface )Go\b/)
// => [
// 'Go',
// index: 11,
// input: 'Go Surface Go',
// groups: undefined]
/^(?!Java).*Script$/
'JavaScript'.search(/^(?!Java).*Script$/) >= 0
// => false
'CoffeeScript'.search(/^(?!Java).*Script$/) >= 0
// => true
'TypeScript'.search(/^(?!Java).*Script$/) >= 0
// => true
/^(?:a*)*b$/
/(?<=^(?:a*)*)b$/