I got the following regular expression from Regular expression to count number of commas in a string.
/^([^,]*,){21}[^,]*$/
Is the top rated solution (https://stackoverflow.com/a/863137/3787418) for matching 21 commas.
How can I modify that regular expression to match 21 times 'hello world' instead of a single character?