Use this tag for questions about separating an item (e.g. a string) into parts, often by a delimiter or regular expression.
I have a string, "004-034556", that I want to split into two strings: string1="004"; string2="034556"; That means the first string …
java string splitI have this string stored in a variable: IN="[email protected];[email protected]" Now I would like to …
bash shell split scriptingI'm trying to iterate over the words of a string. The string can be assumed to be composed of words …
c++ string splitI want my Python function to split a sentence (input) and store each word in a list. My current code …
python list split text-segmentationI have a comma-separated string that I want to convert into an array, so I can loop through it. Is …
javascript string splitIs there any built-in method in Java which allows us to convert comma separated String to some container (e.g …
java string collections splitIn a Bash script I would like to split a line into pieces and store them in an array. The …
arrays bash splitI've tried to look around the web for answers to splitting a string into an array of characters but I …
python split