All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon from opensource.org, but we are not affiliated with them.
- 0 users online
- 1 user / day
- 9 users / week
- 40 users / month
- 165 users / 6 months
- 1 subscriber
- 274 Posts
- 323 Comments
- Modlog
regular expressions? Any decent text editor should have them. But with text editor you could either just find the hashtags, or do the “replace text” with a regular expression that matches everything that is not a hashtag, and replaces it with nothing.
If you are willing to use command line, you could copy the contents of the article into a text file and then use
grep
command in combination with regular expression that does match hashtags. That would get you a proper list.deleted by creator
Keyword extraction, AI summarization. Those phrases might get you started.