We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A library for handling unique emoji IDs: https://github.com/eklem/unicode-emojis-unique-id-json
The text was updated successfully, but these errors were encountered:
Split text file on \n and process each line with some regex
\n
https://stackoverflow.com/questions/23331546/how-to-use-javascript-to-read-local-text-file-and-read-line-by-line
Sorry, something went wrong.
if no match on ^#.+, then process line, i.e.:
^#.+
U+1F62E U+200D U+1F4A8 ; 13.1 # 😮💨 face exhaling
For the other lines:
;
/.+(?=;)/
#
\(?<=; )\d+.\d\
\(?<=#\s).\
\(?<=#\s.+\s)[\w\-\’ \s:,]+\
Use latest Node.js to get as many emojis extracted as possible.
For the first line, grab unicode emoji version number: /(?<=v)\d+.\d/
/(?<=v)\d+.\d/
Then do if not starting with # until true and do the regex above.
Can now use the unicode-emojis-unique-id-json library. Need to change key id to plaintext and create the codebook from that.
id
plaintext
eklem
No branches or pull requests
A library for handling unique emoji IDs:
https://github.com/eklem/unicode-emojis-unique-id-json
The text was updated successfully, but these errors were encountered: