The String to Comma-Separated List function takes 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 Utilities
String Compare: Examines two given strings to see if they are equal to each other.
Palindrome Check: Evaluates if a given word or sentence is a palindrome.
Reverse String: Takes a given string of alphanumeric characters and reverses its order.
String to Comma-Separated List: Takes any string and split it into a comma-separated list with options for spaces, bracket types, and capital letters.
Word Count: Counts the number of words in a given string regardless of punctuation and new lines.
Character Count: Counts the number of occurrences of each character in a string of text.
Regex Remove: Takes a regex expression and compares it to a sample string to see which patterns should be removed from the string.
Affine Cipher Encrypt: Encrypts ciphertext using an Affine Cipher algorithm given the ciphertext and two keys.
Affine Cipher Decrypt: Decrypts ciphertext using an Affine Cipher algorithm given the ciphertext and two keys.
Caesar Cipher Encrypt: Encrypts non-numeric data by shifting the letters forward or backward on the alphabet by a constant amount.
Caesar Cipher Decrypt: Dencrypts non-numeric data by shifting the letters forward or backward on the alphabet by a constant amount.
String Alphabet Position Sum: Takes a string and converts each character to an integer corresponding to its position in the alphabet and then sums those positions.