Skip to content

Instantly share code, notes, and snippets.

@tacamy
Created June 5, 2017 08:55
Show Gist options
  • Save tacamy/c0349ca1ac4d67b372f221df96d89dad to your computer and use it in GitHub Desktop.
Save tacamy/c0349ca1ac4d67b372f221df96d89dad to your computer and use it in GitHub Desktop.
Simple Pollで誰が答えてないかを調べてmention用のテキストつくるやつ
// copy & paste text from Simple Poll
const str = ``
const members = [
'tacamy',
'yomotsu',
'armorik83',
'nakajmg',
'cancer',
'cyokodog',
'geckotang',
'leader22',
'myakura',
'kyosuke',
'ykhs',
'soto',
'y-maru',
'tomof',
'obara',
'5509',
'oosugi',
'takazudo',
]
let res = ''
members.filter(member => {
return !new RegExp(member).test(str)
}).forEach(member => {
res += `@${member} `
})
console.log(res)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment