A synonym for separating an object or item in pieces.

learn more… | top users | synonyms

0
votes
0answers
26 views

String Split/ String replace based on character length

Here my problem in a notes column having 2000 characters max, i want my string output based on 35 characters, ya i need to replace tag after 30 characters in the string.. example string "hi hello how ...
0
votes
1answer
18 views

Split large text file by date field and save as Month

I have large text files ranging from 400mb to 1GB. Its a tab delimited file with the date being the second field. The records are not sorted by date and can be in any order. The number of records ...
1
vote
1answer
31 views

Splitting a string without removing delimiters, but suppressing empty capture groups

I am splitting a string without removing delimiters, by putting the entire capture regex in parentheses. The intent is to match sentences ending in one or more '[!?]' characters. All is great except ...
0
votes
3answers
38 views

File in a list and then split every term in the list, python

I have a file with words like: IA45,TA43,WB58,AB71 ... etc and I want to convert this words in a list, like: ["IA45","TA43","WB58","AB71" .....] Then,i want to use this list to take words one by ...
3
votes
3answers
34 views

Order files list by batch

I have a long list of individual songs not in folders just songs, and I'd like to move them to the folder of theire artist. the songs are in the following format artist - songname.flac I can store ...
0
votes
1answer
35 views

How can you get the actual value of the string a Javascript regex matches?

I am trying to write a Javascript function that will take a string with <0> (where 0 can really be any number) in it and remove it and get the actual value of the number in it. For example, if ...
0
votes
3answers
41 views

Java regex split double from string

I am having a problem splitting something like the following string: 43.80USD What I want is to be able to split the expression into an array that has "43.80" as the first element and "USD" as the ...
0
votes
4answers
118 views

How to Return true if String array having mix of Int and String type value converted to int in C#

I have string which I split to see if any of the split value is string. If so I want to return true else false. string words = "1 2 c 5"; Easy approach, I can follow by converting into int array ...
-3
votes
2answers
21 views

Action Script 3.0 substring, slice, split, substr [closed]

i want to get the value in between - and - how? Private var Test:String = "1-ALOW-The One Who Loves You Now"; Output should be = ALOW
2
votes
2answers
72 views

Split paragraph into sentences with titles and numbers

I'm using breakiterator in Java to break paragraph into sentences. This is my code : public Map<String, Double> breakSentence(String document) { sentences = new HashMap<String, ...
0
votes
0answers
16 views

Split String With Position ID

I am currently doing some research on data mining and my research data table are looks following ID Author 1 Ali,Ahmad,David,Kumar 2 Aslam,Abid,John Now i want to split comma separated ...
0
votes
0answers
48 views

R: splitting a dataframe and accessing the elements of the list as dataframes

I'm trying to split a dataframe into separate dataframes based on the values in one of the columns, and then access each of those dataframes separately. I followed the suggestions in How do I create ...
0
votes
1answer
11 views

How to split a string column based on '/' in sqlserver 2005?

Hi I don't know how to split a dd/mm/yyyy column into dd as Col1, mm as Col2, yyyy as Col3. It is a string Field, so I can't use Select Convert() query.
1
vote
2answers
60 views

StringTokenizer and String split - split on special character

I have the string: 2|HOME ELECTRONICS| |0|0| | | | |0| | I want to separate all tokens delimited by | in the above string. I tried to tokenize it with StringTokenizer but it doesn't consider ...
1
vote
3answers
47 views

Split in View asp.net mvc4

CONTROLLER: public ActionResult Index() { SonerSevincComEntities context = new SonerSevincComEntities(); var Konular = context.Konu.ToList(); return View(Konular); } ...
-1
votes
1answer
87 views

How to split a string by “/” and “//”?

I'm trying to create a basic model viewer for Wavefront Object files, and part of the reading of the file includes splitting each line. The faces are defined based on slashes. These are the ...
1
vote
3answers
76 views

String Split null value in to array to use if statement

Here's the scenario. User enters 3 types of inputs: 1/1/2013 12:00:00 AM_5/31/2013 12:00:00 AM 1/1/2013 12:00:00 AM_ _5/31/2013 12:00:00 AM The input is for date range query. 1st input: Split by ...
1
vote
3answers
22 views

Deprecated: Function split() is deprecated for nodes

I am using PHP 5.3 and keep getting the following error for my split() function. I have looked at other feeds for this problem, however none of the answers seem to work. function storeFile() { $path ...
0
votes
2answers
53 views

Python splitting unknown string by spaces and parentheses

If I have a string that may be: 'Hello (Test1 test2) (Hello1 hello2) other_stuff' I would like to split it into something like this: split1='hello' split2='Test1, test2' split3='Hello1, hello2' ...
4
votes
3answers
59 views

Python split text and place into array

I dont really know how to explain it using english but: inputText = "John Smith 5" I want to split it and insert that to nameArray and make 5(string) into an integer. nameArray = ["John", "Doe", ...
-4
votes
1answer
50 views

Java - Get specific word from string [closed]

I have a string that is like this: String programList = "List of programs: explorer.exe, conhost.exe, java.exe, something.exe.."; I want to create every word that has the ".exe" to its own string, ...
0
votes
2answers
46 views

Javascript find and replace (customized) [closed]

var MyAddress = " Google Ireland Ltd.<br> Barrow Street<br> Dublin 4<br> Dublin<br> Ireland "; Using split, I can put each line into an array: ...
-1
votes
1answer
29 views

Excel 2010 Split cell into columns, keep blanks [closed]

I have a very large data sheet I need to migrate into a specific format for uploading to a different tool. A sample source Sheet: Name1 Option1,Option2,Option3 Type1 Name2 Option1 Type1,Type2 Name3 ...
2
votes
1answer
26 views

Want to Split string in mysql using SUBSTRING_INDEX

I need to assign AAA-BBB-CCC in 3 different MySQL variables. Here's the unsuccessful code: DELIMITER $$ USE `testdepot`$$ DROP PROCEDURE IF EXISTS `sp_test_dlr`$$ CREATE PROCEDURE `sp_test_dlr`(IN ...
-4
votes
1answer
45 views

in R how do I split one numeric vector into multiple numeric vectors [closed]

How do I split a vector c(1,2,3,4) into 2 vectors 1,2 and 3,4? I don't want to get it into a list. Just two numeric vectors
0
votes
3answers
60 views

Pattern.compile.split vs StringBuilder iteration and substring

I have to split a very large string in the fastest way possible and from what research i did i narrow it down to 2 possibilities: 1.Pattern.compile("[delimiter]").split("[large_string]"); 2. Iterate ...
-1
votes
2answers
59 views

removing unwanted charactors from a file-Python [closed]

I'm reading a text file and extract two columns spliting by space and writing them in to another text file. There are '-' charactors in some of the lines. I want to remove them and write. Whats wrong ...
-1
votes
2answers
27 views

javascript .split() string with <p> </p> and ¤

I have a string containing <p>, </p> and ¤ that I need to split the string with. I have tried split 3 times and used toString between to be able to use split(). BUT this gives me a ...
0
votes
2answers
36 views

RegEx to split string based on operators and retain operator in answer

I want to split string based on few operands. For e.g. String : a&&(b||c) ANS : String[] {a,&&,(,||,c,)} IS it possible with java RegEx? If yes then how? I tried with ...
0
votes
0answers
25 views

handle large PHP strings

I have a PHP (soap call) which returns a total of 472.059 characters all the valuable data is comma seperated (the entire file) how should I proceed. exploding seems to take its time the explode ...
0
votes
4answers
49 views

Splitting array using perl

This is my array buff and I have stored the contents of the array as follows: $buff[0]="3\nHi how are u I am f"; $buff[1]="ine\n The world is so"; $buff[2]="beautiful.\n"; $buff[3]="I love it."; I ...
2
votes
1answer
63 views

Python: how to split and return a list from a function to avoid memory error

I am currently working with a function that enumerates all cycles within a specific array (a digraph) and I need them all. This function returns all cycles as a list of lists (each sublist being a ...
1
vote
1answer
37 views

How to split DNA sequences in python

How can I read and display sequences in python like those tatctattaccc gctgcgataagc tcctacttttgt caggaaaagaaa actgaatccctt ctgaagttgact aggtttgaagtg aacttccaactc gaaaagcaccct and how to divide the ...
-3
votes
0answers
9 views

Loading file and then split arraylist into two arraylists (java)

i'm having a problem while loading a file and then spliting into two the arraylist i read. To create the file im doing this: public static void CreateFileIsep(String fileN, ArrayList Students, ...
-1
votes
2answers
77 views

parsing a string into two part with Split method

I was parsing a string into 2 parts partitioned by the 1st appearance of the '&' character. For example: if the string is 555&hello &world the partitions will be 555 and hello &world. ...
-1
votes
1answer
34 views

jQuery: Uncaught TypeError: Cannot call method 'split' of null

Hello i have a problem with split in this code: This Error: Uncaught TypeError: Cannot call method 'split' of null Full Code: jQuery(function () { // Deeplinking var first = true; ...
0
votes
2answers
75 views

Get all dates from a string in C#

I am using a web based DOTNET application in which I have a log column in database, Whenever user adds a comments in comments textarea on UI, the date, his name along with the comment are appended to ...
0
votes
1answer
27 views

Split PostgreSQL Query filtering

I want to filter the course matery is taken by students, my data like this. select * from course; And show data like this +----+-------+----------+-------+ | id | name | idcourse | status| ...
0
votes
1answer
48 views

Multi symbol string splitter in python? [duplicate]

I have a string, let's say "MDP-A-17_MDP-A-23.3". I want this string split based on "-", "_" and ".". The output will be a list: ["MDP", "A", "17", "MDP", "A", "23", "3"]
2
votes
1answer
54 views

Split HTML 5 date input value into three variables

I am trying to give the users the option to use the HTML5 date input to invoke the native date picker via mobile web. Since I do not want to have duplicate calls for the same methods whether the users ...
0
votes
1answer
44 views

javascript split() string after Word that starts with a sequence of characterS

This seems like it should be a very easy thing to do but I cannot seem to find it anywhere. How can I use Javascript split() to split the string after a certain word that starts with say abcd.... so ...
0
votes
3answers
76 views

Python: Split a list into nested list at points where item matches criteria

I would like to split a list at points where an item is over a certain length. a simplified version of my data is: li = [1,2,3,4000,5,6,7,8,9000,10,11,12,1300] the outcome I am trying to achieve ...
1
vote
3answers
55 views

Using regex to 'clean up' the string

I need a clear text with only words, excluding all digits, extra spaces, dashes, commas, dots, brackets, etc. It is used for a word generation algorithm (taken from gamasutra). I suppose that regular ...
4
votes
5answers
72 views

Split string at nth occurrence of a given character

Is there a Python-way to split a string after the nth occurrence of a given delimiter? Given a string: '20_231_myString_234' It should be split into (with the delimiter being '_', after its second ...
3
votes
3answers
37 views

VB.NET - Split String

I am trying to split the following into two strings. "SERVER1.DOMAIN.COM Running" For this i use the code. Dim Str As String = "SERVER1.DOMAIN.COM Running" Dim strarr() As String strarr = ...
0
votes
1answer
57 views

C# Dealing with Large Strings and memory efficiency

I was wondering... If I want to store a MASSIVE string in my program and also store sub strings of the main string (i.e. store every word and store every sentence as arrays of strings) how can I do so ...
2
votes
1answer
30 views

Split the field value in a mysql JOIN query

I've got a column "code" which may have a string of multiple values e.g. "CODE1&CODE2"... I just need the first one for my JOIN ... kind of like code.split("&")[0] SELECT myTable.*, ...
0
votes
2answers
31 views

Split characters in column names to new columns with logical values in rows

I am trying to split column name strings into separate columns but the issue I am facing is that the rows have logical values. There are a few posts that split columns with strings in the rows but I ...
1
vote
2answers
38 views

Split a string and populate a table for all records in table in SQL Server 2008 R2

I have a table EmployeeMoves: | EmployeeID | CityIDs +------------------------------ | 24 | 23,21,22 | 25 | 25,12,14 | 29 | 1,2,5 | 31 ...
3
votes
5answers
95 views

AWK split for multiple delimiters lines

I'm trying to split a file using AWK one-line but the code below that I came with is not working properly. awk ' BEGIN { idx=0; file="original_file.split." } /^REC_DELIMITER.(HIGH|TOP)$/ { idx++ } ...

1 2 3 4 5 78