Separate items in the list with a sign other than ","

I have a text that is a collection of quotes and many of them have commas in them, so I can't separate the items with commas. Is there a way to separate it with ";" or "/" or "|" or similar?

For example:
“The way I see it, if you want the rainbow, you gotta put up with the rain!”/"If you look at what you have in life, you'll always have more. If you look at what you don't have in life, you'll never have enough."/"You only live once, but if you do it right, once is enough."
(I only want to have 3 items, not 9 items)

Hello,

which is you initial data and want do you want to achieve? you can split a string with the character you want...or you can join the elements of a list by adding the characters you want...

Can you explain with more details what do you want?

Some examples:

1 Like

Thank you so much. I have solved the problem.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.