The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
10 views

vb.net: How do i split a delimited file out into separate files depending on the flag i set in the code

I've got a pipe delimited file that has multiple different flat lines of data. I want to split out depending on the first field in the data so that i end up with two data files (one with the data i ...
0
votes
3answers
60 views

Splitting string into different line lengths

I'm trying to split a variable length string across different but predefined line lengths. I've thrown together some code below which fails on key error 6 when I plonk it into Python Tutor (I don't ...
1
vote
0answers
39 views

GWT split points with redundant fragments?

I'm using GWT.runAsync to split the cod into different fragments. I have a problem with the leftover fragment (reaching 1.2 Mb) and that's because the widgets that I use are interdependent. I know ...
0
votes
1answer
50 views

error: ‘split’ was not declared in this scope

I get this compiler error from c++. error: ‘split’ was not declared in this scope. I need help as i am not able to figure out why. Here is my code: #include <iostream> using namespace std; ...
3
votes
2answers
63 views

Using end() with explode() does not work

I have a string which will contain a file upload name, for example "image.jpg". I'm trying to use the explode function but it's returning an error "explode() expects parameter 2 to be string, array ...
0
votes
0answers
41 views

GWT/GAE 1MB .cache.js file is not gzip compressed

I'm using GWT's splitting method to split the code into multiple fragments. My app is served by a Google App engine server and uses gzip compression to send the fragments. The problem is that one of ...
5
votes
3answers
85 views

Splitting a Long String into smaller strings

I have a dataframe that includes a column of numbers like this: 360010001001002 360010001001004 360010001001005 360010001001006 I'd like to break into chunks of 2 digits, 3 digits, 5 digits, 1 ...
-2
votes
2answers
52 views

Spliting a String upto nth delimiter in java

String s = "10.226.18.158:10.226.17.183:ABCD :AAAA" My requirement is to split the string at up to 3rd : or up to 2nd :. i.e. Something like String sa[] = s.split(), but with the regex splitting ...
1
vote
2answers
34 views

Splitting a string seems not to work

I have problems with reading a file (textasset) line by line and getting the results! here is the file i am trying to read: AUTHOR COMMENT INFO 1 X ARG 0001 0.581 2.180 1.470 ...
0
votes
1answer
28 views

Using .split and getting content

I have group of numbers divided by comma(4 numbers in it) and groups are divided by ":". example(you see 3 groups): 2,0,6,46:3,14,22,12:0,45,65,12: ..... I want to take this numbers; I mean : ...
-1
votes
1answer
45 views

Splitting in python [closed]

The string is in the below format. A1:::x1:::B1.A2:::x2::x3::x4:::B2.A3:::x5::x6::x7:::B3. The output after splitting should be ['x1:::B1', 'x2::x3::x4:::B2', 'x5::x6::x7:::B3'] Note: A,x is ...
0
votes
2answers
58 views

Split dataset by grouping variable to create multiple bar plots at once

I have a large dataset that looks like this: time, precip, grp 2005-09-30 11:45:00,1.1,1 2005-09-30 23:45:00,1.5,1 2005-10-01 23:45:00,0.2,2 2005-10-02 11:45:00,0.3,2 ...
1
vote
2answers
38 views

How to subdivide a nested list (used as a matrix) into lists based on the string in the 0th column

trees=[ ['species_1', observednumber_1, calculatedvalue, calculatedvalue], ['species_2', observednumber_2, calculatedvalue, calculatedvalue], ['species_1', observednumber_3, calculatedvalue, ...
1
vote
2answers
41 views

Using AWK to break out pieces of a single file into multiple files, but I need further direction

I am still very new to this type of task, but I have exhausted my resources and thus am reaching out for a helping hand. I have a single file composed of concatenated files. I am able to use the ...
-1
votes
6answers
67 views

Split String using C++ [duplicate]

I am having problems splitting a string using pure C++ The string always looks like this 12344//1238 First int then // and then the second int. Need help to get the two int values and ignore the ...
1
vote
1answer
21 views

Dynamic regular expression

Trying to make an expression dynamic. So I can split a string up in equal chunks. var keyParts = key.match(/.{1,4}/g); var keyParts = key.match(/.{rangeA,rangeB}/g); So I want to make a ...
1
vote
2answers
49 views

python splitting list by keyword

I have a list as follows: ['MARK_A', 8, 7702.5, 13, 7703, 983472], ['MARK_B', 10, 7702.5, 983472], ['MARK_B', 3, 7703.5, 983472], ['MARK_B', 6, 7701.2, 983472], ['MARK_B', 5, 7704.4, 983472], ...
0
votes
1answer
80 views

Splitting a string, reversing then joining the string in python [duplicate]

I want to Split a string, reverse it and join it back with an X instead of a space in a function. eg. 'WHO WATCHES THE WATCHERS -> to -> SEHCTAWXOHWXSREHCTAWXEHT' str = ("WHO WATCHES THE WATCHERS") ...
0
votes
3answers
95 views

Catching errors in text file lines, skipping and reporting

I have a text file that I need to read and each line is an IP, a URL, and finally a date, all separated by white spaces. I want to get each piece of information assigned to the appropriate variable of ...
0
votes
0answers
20 views

splitting string into multiple rows

am trying to split string into multiple rows using Split function.but it showing error " split doesnt exist in current context" can any one tell solution for this thnx in advance kishan reddy LV
0
votes
1answer
28 views

How to split multiple files into a gb folder?

I am downloading many folders and then splitting them into 1 Gb folder in windows OS. Right now, it is a manual process. Is there any windows command/program to split all the files into 1Gb folder?
1
vote
1answer
93 views

SSRS Reporting Services - splitting string at a certain word

I've been looking for a while now for an answer to what I think is probably quite an easy one, and thought I'd found it on stackoverflow here: SSRS Reporting Services - Bold Word in String But sadly ...
-3
votes
1answer
114 views

C++ Splitting a char string into a dynamic char array behaving unpredictably

I have a program creating a dynamic char string of data inputs (c++ string is not allowed to use) that look like this (where instead of the date can be basically any other data and the number of data ...
0
votes
3answers
175 views

Splitting data from a text file into parallel arrays

My professor gave the class an example of C# that can be used to split data from a text file. I am trying to use it for a project that involves splitting the contents of a txt. file into 4 arrays or ...
0
votes
1answer
35 views

how to get the last part of a string before a certain character?

i am trying to print the last part of a string before a certain character. i'm not quite sure whether to use the string .split() method or string slicing or maybe something else. here is some ...
1
vote
4answers
42 views

Split string with denominator not working [duplicate]

Quick question: I want to split an IP Address (eg. 192.168.0.1) using the period (.) as a delimiter. I can't seem to get it right. I tried running different scenarios to see if it's my brain ...
1
vote
2answers
96 views

Splitting a list into two lists (Unique and Duplicate) (Prolog)

I have been trying to split a given list into two different lists: Unique and Duplicate. For example, if we have the list [1, 1, 2, 3, 3, 4, 5] I want the Unique list to be [2, 4, 5] and Duplicate to ...
0
votes
1answer
39 views

Splitting (duplicating rows of) an SQL table based on the values in one column

I have a table which is the result of an export and has the columns and values like the following Name Aliases Ranks Ben BenA BenB BenC 1 5 3 Jerry JerryA JerryB 7 3 Aliases ...
2
votes
4answers
30 views

Phrasing a long string to a 2d array PHP

I have a long string say "123~456!!!789~012!!!345~678!!!901~234!!!567~890!!!1234~5678". I have used to types of delimiter in this string ~ and !!! . Can anyone suggest me an efficient way to ...
0
votes
2answers
50 views

fk pk relationship across rows

When splitting a single table into multiple is it a common case that foreign key is referring to primary key from different row ? for example Source table data is id1 id2 name1 name2 10 1 a10 ...
3
votes
3answers
91 views

split string by asterisk python

I have just started learning python 2 days ago, sorry if i have made obvious mistake strings: "brake break at * time" --> ["at","time"] "strang strange I felt very *" --> ["very",""] I am ...
0
votes
3answers
55 views

txt file into array with delimiters in php

My ips.txt file contains the following content: radie1230: 116.79.254.131 Y_O_L_O: 122.149.157.42 midgetman63: 121.121.14.101, 124.112.115.69, 114.182.51.1, 114.118.55.131, 111.21.22.156 kypero: ...
0
votes
1answer
99 views

Splitting a string in ansi C

I'm trying to find a way to split a single string into two separate variables. Right now I have: char buffer[1024]; char firstName[16]; char lastName[16]; fgets(buffer, 1024, stdin); sscanf(buffer, ...
0
votes
2answers
86 views

How to split items in an array obtained from ftp_rawlist()

i am trying to focus on my PHP skills again but i seem to be stuck on the use of arrays. I have an array which contains of 700 items. Each item however looks like this : -rw-r--r-- 1 u37148 u37148 ...
2
votes
4answers
86 views

Data Splitting in Ruby

I am looking for a gem that will split a csv dataset into smaller datasets for training and test on a machine learning system. There is a package in R which will do this, based on random sampling; ...
3
votes
3answers
104 views

How to use boost split to split a string and ignore empty values?

I am using boost::split to parse a data file. The data file contains lines such as the following. data.txt 1:1~15 ASTKGPSVFPLAPSS SVFPLAPSS -12.6 98.3 The white space between the items ...
1
vote
1answer
30 views

maxsplit functionality for regex split

I have a string like this aa = 'nilesh-sharma-is-learning-python' Now I want to split this string for '-' delimiter and with maxsplit 3 times. It can be easily do like this In [35]: ...
0
votes
2answers
64 views

Pick 3 random strings, and then split them with a comma in PHP

I have been searching for a little bit, but I was not able to find anything that was worth while. So here is my problem: I have quite a long string that I want to pick 3 random sets out of, and then ...
2
votes
3answers
533 views

C# Write to multiple files without constantly closing/reopening streams. SteamWriter?

I am trying to read in a table from an Access database, and then sort the data in that table out to a number of text files. The clincher is that the filename to write to is dependant upon values in ...
0
votes
1answer
49 views

Split a text variable and then use one value and enter it in a text box in Selenium IDE

I'm looking to store a value from a popup box, split it into two and then use one of them to enter in a text box. The content I want is Document ID. <div id="approval-dialog" class="modal hide ...
0
votes
3answers
73 views

how to find the word and split the integer and characters in a string

Please tell me this question answer please ... string ss="pradeep rao having 2years exp"; in the above string i want to find the word of years(or) year and if match the the word,i wnt split the ...
0
votes
0answers
59 views

GWT Code splitting using Async Provider

I'm using runAsync in GWT to split my code for different subsystems of my app, with the Async provider pattern (found in the code splitting documentation). So, every time i need to instantiate any of ...
0
votes
0answers
37 views

Is it possible to change the delimiter halfway through the tokenizing process?

This is a follow-up question of Scanner Vs StringTokenizer Vs String.split() In the accepted answer, Neil Coffey says something about changing the the delimiter halfway through depending on a ...
0
votes
1answer
143 views

Transposing a row to columns

I have imported this data into SQL Server from a flat file source. B 01 1007282 Y 1001201 15102 B 02 LEVEL Y 2705201 15102 B 03 1998014 Y 2808201 15102 B 05 Y 2808201 ...
-1
votes
1answer
709 views

Data splitting in SQL Server [closed]

I have data that I want to import into SQL Server. I have a lot of data that needs to be split into multiple columns. B 02 LEVEL 3 Y 02072013 11112012 I need this data to be split into 5 ...
3
votes
3answers
157 views

Using String.split(regex) to to split a line at spaces and punctuation

thank you for taking a look at my problem. So I'm writing a function parse() to read through a specified file line by line, and I'm utilizing the String.split(regex) function to break the line into ...
2
votes
0answers
74 views

Splitting out project from repo

I've a repository that's grown incredibly big and we're going to start breaking out each project in the repo to separate repos. However I've ran into a couple of issues in regards of Node-copyfrom-rev ...
1
vote
2answers
58 views

Splitting address strings on Sequential-Number strings (2nd, 8th, 3rd, first, etc..)

I've been tasked with standardizing some address information. Toward that goal, I'm breaking the address string into granular values (our address schema is very similar to Google's format). Progress ...
1
vote
1answer
99 views

Delphi time graph splitting algorithm

I have 3 records in ClientDataSet with structure: Num: integer; Start: TTime; End: TTime; 1; 9:00; 10:00 2; 9:30; 10:00 3; 9:40; 10:20 I have to get those records to other ClientDataSet like ...
1
vote
3answers
54 views

Splitting a string with delimiters for Strings containing other characters with the same delimiter

I'm trying to split a string like the one : "@WWP2-@POLUXDATAWWP3-TTTTTW@K826" to extract the @WWP2-@POLUXDATAWWP3-TTTTTW and the 826 strings when executing the snippet : String expression = ...

1 2 3 4 5 6