Problem: Users need to be able to paste values into a text box and/or textarea and click a button that will take those values and show them the output with commas inserted.
ex:
User Input
val1
val2
val3
Output
val1,val2,val3
other situation
Is there a way to compare the values to a list created from table values and parse that way? this is different from above because the values might have spaces but still be the same value.
ex:
User Input
this is value one
this is value two
this is value three
Output
this is value one, this is value two, this is value three
So for that I would want to take what the user input, and try and match it to different values in a certain column in my table if that makes sense