Hi, following up on this conversation. What if i want to replace spaces, commas, periods, etc from the string to an empty string. What should I provide in the find regex value?Ex: string = abc, def inc. output should be abcdefinc<string>.gsub(?,'')Th...