Concept Flow - strsplit
Input: string and split pattern
Call strsplit function
Search string for pattern
Split string at each pattern match
Return list of substrings
The strsplit function takes a string and a pattern, finds the pattern in the string, splits the string at each pattern match, and returns a list of substrings.