Tagged Questions
A synonym for separating an object or item in pieces.
237
votes
27answers
256k views
How to split a string in C++?
What's the most elegant way to split a string in C++? The string can be assumed to be composed of words separated by whitespace.
(Note that I'm not interested in C string functions or that kind of ...
69
votes
4answers
16k views
To switch from vertical split to horizontal split fast in Vim
How can you switch your current windows from horizontal split to vertical split and vice versa in Vim?
I did that a moment ago by accident but I cannot find the key again.
35
votes
12answers
20k views
Python strings split with multiple separators
Weird - I think what I want to do is a fairly common task but I've found no reference on the web. I have text, with punctuation, and I want an array of the words. i.e - "Hey, you - what are you doing ...
34
votes
4answers
43k views
Split Java String by New Line
I'm trying to split text in a JTextArea using a regex to split the String by \n However, this does not work and I also tried by \r\n|\r|n and many other combination of regexes.
Code:
public void ...
23
votes
3answers
96k views
How to use Split with jQuery?
I need to break apart a string that always looks like this: something -- something_else. I need to put "something_else" in another input field. Currently, this string example is being added to an HTML ...
22
votes
8answers
31k views
Does XSLT have a Split() function?
I have a string in a node and I'd like to split the string on '?' and return the last item in the array.
For example, in the block below:
<a>
<xsl:attribute name="href">
...
22
votes
13answers
38k views
How do I split a string into a list Python?
Learning to program, trying to do this
I have a string like this
2+24*48/32
and I want to split it into a list like this
['2', '+', '24', '*', '48', '/', '32']
I have messed around with ...
20
votes
2answers
2k views
Git: How to split up a commit buried in history
I flubbed up my history and want to do some changes to it. Problem is, I have a commit with two unrelated changes, and this commit is surrounded by some other changes in my local (non-pushed) history.
...
20
votes
3answers
612 views
How to open a new window below a split created by vimdiff?
If, at a command prompt, I run
vimdiff file1 file2
I get a vim instance that has two files open side-by-side, something like this:
╔═══════╤═══════╗
║ │ ║
║ │ ║
║ file1 │ ...
19
votes
4answers
3k views
How can I swap positions of two open files (in splits) in vim?
Assume I've got some arbitrary layout of splits in vim.
____________________
| one | two |
| | |
| |______|
| | three|
| | |
...
19
votes
3answers
17k views
How do I split a string with multiple separators in javascript?
How do I split a string with multiple separators in JavaScript? I'm trying to split on both commas and spaces but, AFAIK, js's split function only supports one separator.
18
votes
7answers
13k views
Regex for splitting a string using space when not surrounded by single or double quotes
I'm new to regular expressions and would appreciate your help. I'm trying to put together an expression that will split the example string using all spaces that are not surrounded by single or double ...
18
votes
2answers
7k views
Splitting a semicolon-separated string to a dictionary, in Python
I have a string that looks like this:
"Name1=Value1;Name2=Value2;Name3=Value3"
Is there a built-in class/function in Python that will take that string and construct a dictionary, as though I had ...
17
votes
3answers
4k views
Python: Split string with multiple delimiters
I found some answers online, but I have no experience with regular expressions, which I believe is what is needed here.
I have a string that needs to be split by either a ';' or ', '
That is, it has ...
17
votes
7answers
15k views
A method to reverse effect of java String.split()?
I am looking for a method to combine an array of strings into a delimited
String. An opposite to split(). I've seen this in other languages.
Wanted to ask the forum before I try writing my own( since ...
16
votes
4answers
284 views
Perl assignment with a dummy placeholder
In other languages I've used like Erlang and Python, if I am splitting a string and don't care about one of the fields, I can use an underscore placeholder. I tried this in Perl,
(_,$id) = ...
15
votes
7answers
16k views
How to split a byte array
I have a byte array in memory, read from a file. I would like to split the byte array at a certain point(index) without having to just create a new byte array and copy each byte at a time, increasing ...
13
votes
2answers
1k views
Open a buffer as a vertical split in VIM
If you are editing a file in VIM and then you need to open an existing buffer (e.g. from your buffer list: :buffers) how can you open it in a vertical split?
I know that you already can open it with ...
13
votes
8answers
2k views
Splitting a string / number every Nth Character / Number?
I need to split a number into even parts for example:
32427237 needs to become 324 272 37
103092501 needs to become 103 092 501
I'm sure I could just for-next the numbers, but I'm sure there is a ...
13
votes
13answers
7k views
How do you parse a paragraph of text into sentences? (perferrably in Ruby)
How do you take paragraph or large amount of text and break it into sentences (perferably using Ruby) taking into account cases such as Mr. and Dr. and U.S.A? (Assuming you just put the sentences ...
12
votes
5answers
199 views
Read a string, 3x3 characters at a time
So imagine this string:
_ _ _ _ _ _ _
| _| _||_||_ |_ ||_||_|
||_ _| | _||_| ||_| _|
What would be the easiest / nicest way of splitting this string so that each number could ...
12
votes
3answers
334 views
Javascript elegant way to split string into segments n characters long
As the title says, I've got a string, and I want to split into segments n characters long.
For example:
var str = 'abcdefghijkl';
after some magic with n=3, will become
var arr = ...
11
votes
7answers
6k views
Split string to equal length substrings in Java
How to split the string "Thequickbrownfoxjumps" to substrings of equal size in Java.
Eg. "Thequickbrownfoxjumps" of 4 equal size should give the output.
["Theq","uick","brow","nfox","jump","s"]
...
11
votes
3answers
12k views
string.split - by multiple character delimiter
i am having trouble splitting a string in c# with a delimiter of "][".
For example the string "abc][rfd][5][,][."
Should yield an array containing;
abc
rfd
5
,
.
But I cannot seem to get it to ...
11
votes
4answers
9k views
Is there a function in python to split a word into a list?
Is there a function in python to split a word into a list of single letters? e.g
s="Word to Split"
to get
wordlist=['W','o','r','d','','t','o' ....]
10
votes
9answers
9k views
Split array into smaller arrays
I am looking for a way to easily split a python array in half.
So that if I have an array:
A = [0,1,2,3,4,5]
I would be able to get:
B = [0,1,2]
C = [3,4,5]
10
votes
1answer
2k views
Close a split window in Vim without resizing other windows
If I have a Vim window open with 2 splits in it (3 total buffers visible) and I've adjusted the viewport of each split, then I close one buffer, the other two buffer's viewport's are automatically ...
10
votes
4answers
10k views
How can I split a string into chunks of two characters each in Perl?
How do I take a string in Perl and split it up into an array with entries two characters long each?
I attempted this:
@array = split(/../, $string);
but did not get the expected results.
...
10
votes
6answers
11k views
How can i parse a comma delimited string into a list (caveat)?
I need to be able to take a string like:
'''foo, bar, "one, two", three four'''
into:
['foo', 'bar', 'one, two', 'three four']
I have an feeling (with hints from #python) that the solution is ...
10
votes
3answers
9k views
Is there a function in Python to split a string without ignoring the spaces?
Is there a function in Python to split a string without ignoring the spaces in the resulting list?
E.g:
s="This is the string I want to split".split()
gives me
>>> s
['This', 'is', ...
9
votes
3answers
327 views
Is there a command in Vim/gVim to combine two or more tabs into a single split window?
Is it possible to take two files that are open in separate tabs in gVim and combine them into one tab with a split/vsplit window? I'd prefer if there was a way to specify which tabs to join, but even ...
9
votes
1answer
214 views
Best way to split several heads from a list with Erlang?
So, Erlang is a real joy to work with, but there's one problem I run into occasionally, that I'm wondering if there is a nicer way to solve. Often, I find myself needing to split several items from a ...
9
votes
3answers
4k views
Splitting a string at every n-th character
In JavaScript this is how we can split a string at every 3-rd character
"foobarspam".match(/.{1,3}/g)
I am trying to figure out how to do this in Java. Any pointers?
9
votes
1answer
2k views
Split string, convert ToList<int>() in one line
I have a string has numbers
string sNumbers = "1,2,3,4,5";
Split it then Convert To List
sNumbers.Split( new[] { ',' } ).ToList<int>();
How can i convert string array to integer list?
So ...
9
votes
6answers
48k views
Split string into a list in Python
I want my python function to split a sentence (input) and store each word in a list. The code that I've written so far splits the sentence, but does not store the words as a list. How do I do that?
...
8
votes
5answers
201 views
How to split text without spaces into list of words?
Input: "tableapplechairtablecupboard..." many words
What would be an efficient algorithm to split such text to the list of words and get:
Output: ["table", "apple", "chair", "table", ...
8
votes
3answers
1k views
Python split text on sentences
I have a text file. I need get a list of sentences.
How can this be implemented? There are a lot of subtleties, such as dot being used in abbreviations.
My old regexp works bad.
re.compile('(\. ...
8
votes
5answers
357 views
Using perl to split a line that may contain whitespace
Okay, so I'm using perl to read in a file that contains some general configuration data. This data is organized into headers based on what they mean. An example follows:
[vars]
# This is how we ...
8
votes
4answers
1k views
How to split a String array?
Intention is to take a current line (String that contains commas), replace white space with "" (Trim space) and finally store split String elements into the array.
Why does not this work?
String[] ...
8
votes
4answers
872 views
Java split is eating my characters
I have a string like this String str = "la$le\\$li$lo".
I want to split it to get the following output "la","le\\$li","lo". The \$ is a $ escaped so it should be left in the output.
But when I do ...
8
votes
2answers
2k views
Split comma-separated parameters in LaTeX
I am trying to build a command which is similar to LaTeX \cite{}, which accepts a comma-separated list of parameters like this
\cite{Wall91, Schwartz93}
I would like to pass each item in the ...
8
votes
2answers
10k views
C# Regex Split - everything inside square brackets
I'm currently trying to split a string in C# (latest .NET and Visual Studio 2008), in order to retrieve everything that's inside square brackets and discard the remaining text.
E.g.: "H1-receptor ...
8
votes
13answers
3k views
Splitting a person's name into forename and surname
ok so basically I am asking the question of their name
I want this to be one input rather than Forename and Surname.
Now is there any way of splitting this name? and taking just the last word from ...
7
votes
3answers
127 views
Is there a way to split a string on multiple characters in C?
Is there a way in C to split a string (using strtok or any other way) where the delimiter is more than one character in length? I'm looking for something like this:
char a[14] = "Hello,World!";
char ...
7
votes
7answers
301 views
Cancel split window in Vim
I have split my windows horizontally. Now how can I return to normal mode, i.e. no split window just one window without cancelling all of my open windows. I have 5 and do not want to "quit", just want ...
7
votes
7answers
140 views
Splitting on a Unique Character
I want to build a comma separated list so that I can split on the comma later to get an array of the values. However, the values may have comma's in them. In fact, they may have any normal keyboard ...
7
votes
4answers
452 views
Splitting a string into an iterator
Does python have a build-in (meaning in the standard libraries) to do a split on strings that produces an iterator rather than a list? I have in mind working on very long strings and not needing to ...
7
votes
3answers
466 views
split string with more than one Char in C#
i want to split the String = "Asaf_ER_Army" by the "ER" seperator.
the Split function of String doesn't allow to split the string by more than one char.
how can i split a string by a 'more than one ...
7
votes
5answers
360 views
in python, how do i split a number by the decimal point
So if i run
a = b / c
and get the result 1.2234
How do i separate it so that I have
a = 1
b = 0.2234
7
votes
1answer
3k views
How to file split at a line number
I want to split a 400k line long log file from a particular line number.
For this question, lets make this an arbitrary number 300k.
Is there a linux function that allows me to do this?
I know ...