Top "Split" questions

Use this tag for questions about separating an item (e.g. a string) into parts, often by a delimiter or regular expression.

How do I split a string so I can access item x?

Using SQL Server, how do I split a string so I can access item x? Take a string "Hello John …

sql sql-server tsql split
Split string with multiple delimiters in Python

I found some answers online, but I have no experience with regular expressions, which I believe is what is needed …

python string split delimiter
string to string array conversion in java

I have a string = "name"; I want to convert into a string array. How do I do it? Is there …

java arrays string split
Split string on whitespace in Python

I'm looking for the Python equivalent of String str = "many fancy word \nhello \thi"; String whiteSpaceRegex = "\\s"; String[] words = str.…

python regex string split whitespace
How to split a String by space

I need to split my String by spaces. For this I tried: str = "Hello I'm your String"; String[] splited = str.…

java string split arrays
Split Strings into words with multiple word boundary delimiters

I think what I want to do is a fairly common task but I've found no reference on the web. …

python string split
How to split a string with any whitespace chars as delimiters

What regex pattern would need I to pass to java.lang.String.split() to split a String into an Array …

java string whitespace split
How can I split a string with a string delimiter?

I have this string: My name is Marco and I'm from Italy I'd like to split it, with delimiter is …

c# string split
Split string with delimiters in C

How do I write a function to split and return an array for a string with delimiters in the C …

c string split
How to split a string at the first `/` (slash) and surround part of it in a `<span>`?

I want to format this date: <div id="date">23/05/2013</div>. First I want to split the …

javascript jquery date split substring