Introduction
Sometimes, you have a list of words or values in one string and want to work with each item separately. Other times, you have a list and want to join it back into one string.
You receive a list of tags separated by commas and want to search each tag individually.
You want to store multiple email addresses in one column and later split them to send emails.
You have an array of names and want to display them as a single comma-separated string.
You need to count how many items are in a list stored as a string.
You want to convert user input from a text box into an array for easier processing.