The String to Comma-Separated List equation will take any string and split it into a comma-separated list with options for spaces, bracket types, and capital letters.
INSTRUCTIONS: Enter the following
- (S) String - a word, phrase, or numbers
Comma-Separated List (Cn): The result is returned as a comma-separated list
- Spaces: Choose whether the list items are separated by a comma ("item_1,item_2") or a comma + space ("item_1, item_2").
- Bracket Type: Choose what type of brackets surround your list (None, (), [], {}).
- Capital Letters: Choose whether the items in the list are capitalized, lowercase, or not changed.
Example
Spaces |
Bracket Type: |
{} |
Capital Letters: |
Lowercase |
- This Is My String.
- {t, h, i, s, i, s, m, y, s, t, r, i, n, g}
No Spaces |
Bracket Type: |
None |
Capital Letters: |
No change |
- This Is My String.
- T,h,i,s,I,s,M,y,S,t,r,i,n,g

String Manipulation Equations: