Tagged Questions
The splitting tag has no wiki summary.
39
votes
3answers
53k views
How do I split a string with any whitespace chars as delimiters?
What regex pattern would need to pass to the java.lang.String.split() method to split a string with all whitespace characters (' ', '\t', '\n', etc.) as delimiters?
32
votes
6answers
11k views
Easiest way to split a string on newlines in .net?
I need to split a string into newlines in .NET and the only way i know of to split strings is with the Split method. However that will not allow me to (easily) split on a newline, so what is the best ...
28
votes
7answers
18k views
Scanner vs. StringTokenizer vs. String.Split
I just learned about Java's Scanner class and now I'm wondering how it compares/competes with the StringTokenizer and String.Split. I know that the StringTokenizer and String.Split only work on ...
21
votes
15answers
9k views
Svn repository split problem
I want to split a directory from a large Subversion repository to a repository of its own, and keep the history of the files in that directory.
I tried the regular way of doing it first
svnadmin ...
13
votes
12answers
13k views
Is there a way to split strings with String.split() and include the delimiters?
I'm trying to split a string with all non-alphanumeric characters as delimiters yet Java's String.split() method discards the delimiter characters from the resulting array. Is there a way to split a ...
8
votes
2answers
195 views
C# advanced String.Split
I have a string similar to this one:
The boy said to his mother, "Can I
have some candy?"
If I do a normal String.Split on it, I get:
{ 'The', 'boy', 'said', 'to', 'his', 'mother', '"Can', ...
7
votes
2answers
7k views
Git: Stage into Commit, what is the right workflow?
I just created a big piece of code I want to commit in several separate commits.
So I can stage relevant parts, commit, stage, commit, ... and so on until I have all my changes commited.
The missing ...
7
votes
10answers
7k views
7
votes
7answers
4k views
c++ file io & splitting by separator
I have a file with data listed as follows:
0, 2, 10
10, 8, 10
10, 10, 10
10, 16, 10
15, 10, 16
17, 10, 16
I want to be able to input the file and ...
6
votes
4answers
919 views
splitting up a git commit into phases: how to manually intervene?
I have a source file where 2 features have been added. In order to allow cherry-picking, I'd like to commit that in 2 phases: one for each feature. Until now, in similar situations, using git add -p ...
5
votes
1answer
96 views
How to split a string without spaces of continuous delimiter
how to split the string like "x~y~z~~~~~" with delimiter ~ ,we have to split this as 7 elements. but while processing with string.split("~") method it gives 3 strings only
5
votes
2answers
397 views
What to call a function that splits lists?
I want to write a function that splits lists into sublists according to what items satisfy a given property p. My question is what to call the function. I'll give examples in Haskell, but the same ...
4
votes
3answers
212 views
Statically compile pdftk for Heroku. Need to split PDF into single page files
So we're using heroku to host our rails application. We've moved to the cedar stack. This stack does not have the pdftk library installed. I contacted support and was told to statically compile it for ...
4
votes
4answers
100 views
Python: How to add three text files into one variable and then split it into a list
I'm using Python 2.5 and trying to make a variable called total and adding three files to it. Then i compress total and convert it into hex and split it into a list of strings with maximum length of ...
4
votes
2answers
2k views
Chopping media stream in HTML5 websocket server for webbased chat/video conference application
We are currently working on a chat + (file sharing +) video conference application using HTML5 websockets. To make our application more accessible we want to implement Adaptive Streaming, using the ...
4
votes
2answers
301 views
Splitting gzipped logfiles without storing the ungzipped splits on disk
I have a recurring task of splitting a set of large (about 1-2 GiB each) gzipped Apache logfiles into several parts (say chunks of 500K lines). The final files should be gzipped again to limit the ...
4
votes
1answer
79 views
splitting a list in jQuery - conscious of memory and reusability
I'm trying to write a function in jQuery that will split lists - or really, any element that has children - that is conscious of memory use and is general enough to be widely reusable, but I'm having ...
4
votes
5answers
2k views
Split a text into single words
I would like to split a text into single words using PHP. Do you have any idea how to achieve this?
My approach:
function tokenizer($text) {
$text = trim(strtolower($text));
$punctuation = ...
4
votes
3answers
761 views
How do I handle every ASCII character (including regex special characters) in a Perl regex?
I have the following code in Perl:
if (index ($retval, $_[2]) != -1) {
@fs = split ($_[2], $_[1]);
$_[2] is the delimiter variable and $_[1] is the string that the delimiter may exist in. ...
3
votes
2answers
94 views
Splitting Strings and Generating Frequency Tables in R
I have a column of firm names in an R dataframe that goes something like this:
"ABC Industries"
"ABC Enterprises"
"123 and 456 Corporation"
"XYZ Company"
And so on. I'm trying to generate ...
3
votes
2answers
165 views
VBA - Split STRING Function with startPOS and endPOS
I need a function in Excel VBA that will split a string with a START_POSITION and END_POSITION.
Like:
function splitxy(text as String, start_pos as Integer, end_pos as Integer) as String
Do I need ...
3
votes
2answers
52 views
Separating every line in a file at specific points
I have a dictionary file formatted like this:
A B [C] D
Where a is a word (with no spaces), B is another word (with no spaces inside it), C is the pronunciation (there are spaces here), and D is ...
3
votes
1answer
108 views
VB.NET String.Split Method?
I'm having some issues using the String.Split method, Example here:
Dim tstString As String = "something here -:- urlhere"
Dim newtstString = tstString.Split(" -:- ")
MessageBox.Show(newtstString(0))
...
3
votes
1answer
110 views
fastest way to split a text file at spaces in Javascript
I'm looking at doing some text processing in the browser and am trying to get a rough idea of whether I am going to be CPU bound or I/O bound. To test the speed on the CPU side of the equation, I am ...
3
votes
3answers
225 views
How do you handle / manipulate split images
We have a requirement to display short / bigger size images. (e.g. I could have the front portion of the bus, back portion of the bus and middle portion of the bus as separate images).
So to ...
3
votes
5answers
409 views
Split string and just get number in python?
I have a string like "GoTo: 7018 6453 12654\n" I just want get the number something like this ['7018', '6453', '12654'], I tries regular expression but I can't split string to get just number here is ...
3
votes
4answers
108 views
Splitting assemblies - finding the balance (avoiding overkill)
I'm writing a wide component infrastructure, to be used in my projects.
Since not all projects will require every component created, I've been thinking of splitting the component into discrete ...
3
votes
2answers
210 views
How do I split this huge image 15104 * 11264
Paint.net dies opening this image, and MS paint as well.I don't know how to open this file for editing.Actually, I set out to break this image (its a map of my area) and load it to my phone (moto rokr ...
3
votes
5answers
1k views
Haskell — How to split a number into a list for further processing?
I have an Int that i want to split into it's individual numbers which ideally would be contained in a list, which i can then process further. So i would like something like this:
split 245
--will ...
3
votes
2answers
1k views
To split only Chinese characters in java
I am writing a java application; but stuck on this point.
Basically I have a string of Chinese characters with ALSO some possible Latin chars or numbers, lets say:
查詢促進民間參與公共建設法(210BOT法).
I want ...
2
votes
2answers
87 views
split tree into equal parts
I am looking for an algorithm to split a tree with N nodes (where the maximum degree of each node is 3) by removing one edge from it, so that the two trees that come as the result have as close as ...
2
votes
1answer
55 views
Split expressions but leave separators
There are such expressions like:
name=="sometext"
value!=4
I would like to split such expressions with string separators like "==" and "!=" and keep these separators, so result would be:
...
2
votes
3answers
117 views
how to split a string in java
I have a string something like |serialNo|checkDelta?|checkFuture?|checkThis?|.
Now i am using the following code to split the string.
String[] splitString = str.split("|");
but when i use this i ...
2
votes
2answers
115 views
Splitting window in Vim
When doing a vsplit of the window on a file in vim, the default positioning of the vertical window is to the left of the original window. I need to manually change it to the right with "Ctrl+w + Shift ...
2
votes
3answers
425 views
splitting a continuous variable into equal sized groups using R
I need to split/divide up a continuous variable into 3 equal sized groups.
Example data frame
> anim <- c(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15)
> wt <- ...
2
votes
3answers
170 views
Splitting up a string
I would like to take the code below and take the 5 number string the I input into the box and output 5 spaces in between each number. So I could enter 12345, and the output would be 1 2 3 ...
2
votes
1answer
385 views
GWT code-splitting pattern for ClientBundle image resources
In my GWT large project, I have a ClientBundle for my image resources. I defined about 40 GIF files inside it. (size of each file is about 5KB)
Then I create a class with a static method to set the ...
2
votes
1answer
646 views
Splitting word file into multiple smaller word files using OLE Automation from java
I have been using OLE automation from java to access methods for word.
I managed to do the following using the OLE automation:
Open word document template file.
Mail merge the word document template ...
2
votes
2answers
320 views
How to split a list of items into equal partitions according to the item's weight?
I have a list of items that is somewhat like this:
[
["orange", 9],
["watermelon", 3],
["grapefruit", 6],
["peach", 8],
["durian", 2],
["apricot", 6]
]
I would like to split this list ...
2
votes
1answer
159 views
When creating a presentation programatically, how to split a large blob of text between slides?
I am creating a presentation programatically using presentationml. The full presentation will be a long table with rows having various amounts of text. What is the best way to figure out where to ...
2
votes
2answers
772 views
How can I split a string at the first occurrence of “-” (minus sign) into two $vars with PHP?
How can I split a string at the first occurrence of - (minus sign) into two $vars with PHP?
I have found how to split on every "-" but, not only on the first occurrence.
example:
this - is - line - ...
2
votes
4answers
122 views
Split html text in a SEO friendly manner
I've some html text like
<h1>GreenWhiteRed</h1>
Is it SEO friendly to split this text in something like
<h1><span class="green">Green</span><span ...
2
votes
4answers
460 views
Can splitting .MDB files into segments help with stability?
Is this a realistic solution to the problems associated with larger .mdb files:
split the large .mdb file into
smaller .mdb files
have one 'central' .mdb containing
links to the tables in the ...
2
votes
5answers
460 views
How to split this array into three's and place it in <td> using php?
Hi
I have an php array of ten numbers
$arr = array("first" => "1", "second" =>"2", "Third" =>"3", "Fourth" =>"4",
"fifth" =>"5",, "sixth" =>"6", "seventh" =>"7", "eighth" ...
2
votes
2answers
652 views
How can I split a table vertically into two tables in XSL?
If I have the following table:
<table>
...
2
votes
2answers
8k views
Dynamic Jquery Splitter Plugin
Hi
I am trying to use Jquery Splitter http://www.methvin.com/jquery/splitter/
it works fine if the splitter panes are static but i need to add panes dynamically in it.
also i need to remove those ...
2
votes
2answers
1k views
Splitting up an interval in weeks in Postgres
Here goes a yet another SQL question about dates…
I'm building a calendaring application using PHP and Postgres that would display events spanning days, weeks or possibly months. Each event has a ...
2
votes
4answers
206 views
Quick Problem - Extracting numbers from a string
I need to extract a single variable number from a string. The string always looks like this:
javascript:change(5);
with the variable being 5.
How can I isolate it? Many thanks in advance.
2
votes
5answers
3k views
Splitting /proc/cmdline arguments with spaces
Most scripts that parse /proc/cmdline break it up into words and then filter out arguments with a case statement, example:
CMDLINE="quiet union=aufs wlan=FOO"
for x in $CMDLINE
do
»···case $x in
...
2
votes
4answers
145 views
splitting files for P2P application
I have to implement a middleware system for file sharing, and it has to split the files not unlike what happens on bittorrent, where it sends and receives separate pieces simultaneously from varios ...