Skip to content

Instantly share code, notes, and snippets.

@s3131212
Last active January 17, 2017 11:39
Show Gist options
  • Save s3131212/1852bd4b3be5cea1920d9ced6d8a6494 to your computer and use it in GitHub Desktop.
Save s3131212/1852bd4b3be5cea1920d9ced6d8a6494 to your computer and use it in GitHub Desktop.
SITCON 2017 CFP 字數統計
function count(value){
nowChr = 0;
for(var i=0;i<value.length;i++){
value.charCodeAt(i)<256?nowChr++:nowChr+=2;
}
console.log(nowChr/2);
}
count($('body > div.container-body > div > div.col-md-12 > table > tbody > tr:nth-child(3) > td').text())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment