Given a string, find all integers inside and return a string that separates them by commas.
There should be no leading or
trailing commas. For example, if 11 12 and 13 are in the string, you should return
"11,12,13" NOT "11,12,13," or ",11,12,13". If no integers are found, return an empty string.