CyberChef icon indicating copy to clipboard operation
CyberChef copied to clipboard

Operation request: Word Cloud Generator

Open n1474335 opened this issue 6 years ago • 4 comments

Summary

Input a load of text, generate a word cloud which highlights the most used words (filtering out common words like 'the', 'and', 'it' etc.).

The basic output type could be a ranked list and the present type could be an image or some other HTML-based display.

n1474335 avatar Sep 19 '19 14:09 n1474335

Hi, Are we only focusing on English language?

RAJAT--PALIWAL avatar Oct 18 '19 09:10 RAJAT--PALIWAL

Ideally not, but that's probably a good place to start. It would be nice if there was a dropdown option to choose which language, but I imagine that would be quite a lot of work, so let's start with English.

n1474335 avatar Oct 18 '19 10:10 n1474335

Hi @NalinGHub

You can pick this up; Go through contribution guidelines and follow the steps.

Have fun.

RAJAT--PALIWAL avatar Oct 23 '19 05:10 RAJAT--PALIWAL

This is very minimal and text only but efficient I think. HTH.

[
  { "op": "To Lower case",
    "args": [] },
  { "op": "Find / Replace",
    "args": [{ "option": "Regex", "string": "\\W" }, "\\n", true, false, true, false] },
  { "op": "Unique",
    "args": ["Line feed", true] },
  { "op": "Sort",
    "args": ["Line feed", true, "Numeric"] }
]

Demo

GlassGruber avatar Aug 27 '25 23:08 GlassGruber