Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
10answers
390 views

How to deal with last comma, when making comma separated string? [closed]

Possible Duplicates: Don't print space after last number Printing lists with commas C++ #include <vector> #include <iostream> #include <sstream> #include ...
5
votes
4answers
493 views

Line breaks in generated csv file driving me crazy

I'm trying to make an export of some data i have (stored in a datatable). Some of those values have a linebreak in them. Now every time i try and import the file in excel (2010), the linbreaks get ...
4
votes
4answers
53 views

PHP Add commas to items with AND

I want to add a comma to every item except last one. Last one must have "and". Item 1, Item 2 and Item 3 But items can be from 1 + So if 1 item: Item 1 If 2 Items: Item 1 and Item 2 If 3 ...
3
votes
4answers
191 views

escaping tricky string to CSV format

I have to create a CSV file from webservice output and the CSV file uses quoted strings with comma separator. I cannot change the format... So if I have a string it becomes a "string"... If the value ...
3
votes
2answers
78 views

how to count values with using find_in_set?

In my db, uid is the autoincrement value indicates user ids and u_follow shows the user that follows other users with their uid seperated comma. i want to count that how many followers has each user. ...
3
votes
3answers
470 views

Regex: Comma delimited integers

I'm trying to create a regex that accept: An empty string, a single integer or multiple integers separated by a comma but can have no starting and ending comma. I managed to find this, but I cannot ...
3
votes
7answers
7k views

Convert multiple rows into one with comma as separator

If I issue SELECT username FROM Users I get this result: username -------- Paul John Mary but what I really need is one row with all the values separated by comma, like this: Paul, John, Mary ...
2
votes
1answer
72 views

Alternative solution for comma separated values when the column count is unknown | MySQL

I have a requirement to design a table which almost looks like a 3 dimensional requirement. For example, There are "infinite" varieties of Dinosaurs. All the Dinosaurs will have some common set ...
2
votes
4answers
80 views

Using Spaces in Java Regex

I'm having a lot of difficulty with spaces in Java while using regular expressions. The assignment is to split a comma-separated input string like, J,Project report,"F, G, I",1 into separate ...
2
votes
3answers
103 views

Exporting a Postgres Database to an Excel Spreadsheet

I have a PostgreSQL database at work that is a single table of data. The theme of the data is computers - things like physical location, MAC address, serial number, and computer name. I need to get ...
2
votes
1answer
122 views

Single Line separated records in SQL SERVER Query result

I had a query that returned multiple rows from a table. Then I converted that query to this one: ;with mycte as (select s.FirstName + ' ' + s.LastName as Name from ClientStaff cs left outer join ...
2
votes
1answer
336 views

Create comma-delimited values in Excel (using PivotTable)?

Is there a way to generate comma-delimited values in Excel (optimally using a PivotTable)? Consider the following data: Object Color foo Red foo Blue bar Red bar Blue bar Green baz ...
2
votes
5answers
355 views

Easiest way of working with a comma separated list

I'm about to build a solution to where I receive a comma separated list every night. It's a list with around 14000 rows, and I need to go through the list and select some of the values in the list. ...
2
votes
3answers
645 views

Regular Expression to break row with comma separated values into distinct rows

I have a file with many rows. Each row has a column which may contain comma separated values. I need each row to be distinct (ie no comma separated values). Here is an example row: AB ...
2
votes
8answers
453 views

Building a comma separated list?

I'm tryin to use SQL to build a comma separated list of cat_id's the code is: declare @output varchar(max) set @output = null; select @output = COALESCE(@output + ', ', '') + ...
2
votes
7answers
1k views

How do I know if a file is tab or space delimited in Perl?

I am uploading a file to a Perl program from from an HTML page. After the file has been uploaded I want to determine whether the file is either space or tab delimited and all the values are integers. ...
1
vote
8answers
72 views

Bash turning multi-line string into single comma-separated

Let's say I have the following string: something1: +12.0 (some unnecessary trailing data (this must go)) something2: +15.5 (some more unnecessary trailing data) something4: +9.0 (some ...
1
vote
3answers
45 views

Separate lists of format M=[(a,x), (b,y)] into M1=[a,b] and M2=[x,y]

I have a list M below which came from an external file (This is a large list in reality, len(M)>10000). M=[(1, 100), (2, 200), (3, 300), (4, 400)] However, I want to separate it into ...
1
vote
2answers
59 views

How do I input multiple values that are comma-separated into a table?

Disclaimer: I am completely new to PHP and MySQL/SQL. I have multiple implode()functions for my arrays. I want to be able to have the arrays inputted into the table separated with commas to avoid ...
1
vote
2answers
69 views

R: converting comma separated entry to columns

I have a dataset with several columns, one of which is a column for reaction times.  These reaction times are comma separated to denote the reaction times (of the same particiapnt) for the ...
1
vote
2answers
41 views

Comma separated value & wildcards in mysql

I have a value in my database with comma separated data eg. 11,223,343,123 I want to get the data, if it match a certain number (in this example it's number 223). WHERE wp_postmeta.meta_value IN ...
1
vote
4answers
161 views

How do I check to see if value exists within comma-separated field?

I'm working on designing a "friend" system for my site. I have a USERS table in my database and two fields in that table called "friendrequestssent" and "friendrequestsreceived". When a user sends a ...
1
vote
2answers
125 views

Load String of comma-separated-values (csv) into Quickoffice or Google Doc

I am writing an Android App that collects data as a String of comma-separated-values (terminating each line with '\n') and then emails me the data once a month. One of my beta-testers has informed me ...
1
vote
4answers
99 views

Removing duplicates from comma-seperated list

I am generating a comma-seperated list out of the rel-attributes of several li-elements, using the map-function. poiSelectedList = $('#poiList li li.selected').map(function() { return ...
1
vote
2answers
102 views

Return columns as comma seperated, for more than one condition on key or more than one row

I have a table with values: Key1 Key2 ColumnKey 1 idx here 1 idx there 2 idx where 2 idx why I need to return, for both Key1, Key2 being ...
1
vote
1answer
60 views

In TextMate is there an easy way to swap two comma-separated values?

Let's say I have the following: ['cart', 'horse'] Is there a quick way to swap the two so I have the following: ['horse', 'cart'] I'm referring to the actual text and not reordering an array ...
1
vote
4answers
126 views

Lua - convert a table into a comma separated list

I need to convert a table into a comma separated list in order to save it to a text file. Is there a built in method for doing this in Lua?
1
vote
1answer
691 views

Mysql string split [closed]

Possible Duplicate: Can Mysql Split a column ? I have one string column and one comma separated column as below Example, I have the table, Col1 | col2 1 | a,b,c 2 | d,e From ...
1
vote
4answers
103 views

How to insert comma in comma separated file

I am creating a comma separated file using a data array in a loop. But the problem is that if any location in the array already has a comma then it does not create a correct comma separated file. ...
1
vote
4answers
651 views

remove duplicates from comma separated string

Is there a better (faster) solution to remove duplicates from a comma separated string? public function d($dep) { if (strpos($dep,',') !== false) { $nd = explode(',',$dep); $oa = ...
1
vote
5answers
4k views

Export to csv in jQuery

I am dynamically generating a div which is like : <div id='PrintDiv'> <table id="mainTable"> <tr> <td> Col1 ...
1
vote
1answer
848 views

Create spring beans, based on a comma-separated list of classes

Is there a way in Spring to create a collection, or array, of beans, based on a comma-separated list of classes. For example: package mypackage; public class Bla { private Set<MyBean> beans; ...
1
vote
2answers
849 views

Add comma-separated value of grouped rows to existing query

I've got a view for reports, that looks something like this: SELECT a.id, a.value1, a.value2, b.value1, /* (+50 more such columns)*/ FROM a JOIN b ON (b.id = a.b_id) JOIN c ON (c.id = ...
1
vote
5answers
627 views

Removing trailing comma from CSV data

this is the Code for adding comma after another number ,but i want to delete the last comma: str_MSISDN.Append("'" + _MSISDN[x].TrimStart() + "'" + ",");
1
vote
1answer
748 views

Consolidated: SQL Pass comma separated values in SP for filtering

I'm here to share a consolidated analysis for the following scenario: I've an 'Item' table and I've a search SP for it. I want to be able to search for multiple ItemCodes like: - Table structure : ...
1
vote
3answers
328 views

How to handle comma separated decimals and floats in CF?

I have to validate form values as integers. I have tried something like this: <cfloop collection="#form#"> <cfif form.value eq int(form.value)> #form.value# is an integer ...
1
vote
2answers
196 views

I would like to generate view in oracle that converts comma-separated entry to columns

I would like to generate view CUSTOMER, CUSTOMER_ID, PRODUCTS ABC INC 1 A=XYX, B=ZZZ DEF CO 2 A=XYX, B=ZZZ, C=WWW GHI LLC 3 B=ZYX Would like the view to ...
0
votes
3answers
50 views

Remove an item from a comma-seperated string

Let's say I have a string: cat,mouse,dog,horse Is there a regex or a function that will work as follows? 1)"cat" return string ->"mouse,dog,horse" 2)"mouse" return string ...
0
votes
0answers
21 views

Django admin interface adds characters u"[ ] to a list of strings with SeparatedValuesField

I'm using SeparatedValuesField to keep track of a list of strings as explained by http://davidcramer.posterous.com/code/181/custom-fields-in-django.html and many posts here on SO that recommend this ...
0
votes
2answers
44 views

Writing a file with properties from the datastore

I want a comma-separated list of all the email addresses my application stores. It's too large for a regular request and writing it to the blobstore is also a too large request: class ...
0
votes
4answers
157 views

How do I convert from dot-separated money into comma-separated number

I have the following possible input values that are expressed in an abbreviated way: $39.44 $0.523 $1.336 Which I would like to convert into: $39,440,000 $523,000 $1,336,000 I would prefer to ...
0
votes
3answers
56 views

Removal of special characters, a comma separated text, PHP

I got my text variable which is user-specified, normally, user should enter the tags which has to look following: "food, community, relationship" but if user type for example ...
0
votes
1answer
568 views

A query to combine multiple row values into one field in MS-Access 2003? [closed]

Possible Duplicate: Combine rows in Access 2007 If I have two tables: let's say OrderStatus and Comments, how can I sum up all comments which are made related to one order, so that I can ...
0
votes
2answers
89 views

Query that returns comma separated list and allows to search inside it

I have MainTable with 2 fields: MAIN_ID and DESCRIPTION and SeoncdaryTable with 2 fields: MAIN_ID (FK to MainTable) and EXTRA_INFO. I would like to have a query that returns one record per MainTable ...
0
votes
1answer
263 views

Adding commas, decimal to number output javascript

I'm using the following code to count up from a starting number. What I need is to insert commas in the appropriate places (thousands) and put a decimal point in front of the last two digits. ...
0
votes
0answers
72 views

How do I place a comma between each character in a string with PHP? [closed]

Possible Duplicate: seperate with commas $following_user_id .= $row['following_user_id']; leads to 44443344330 can you seperate each with comma, but I don't want a comma on the last ...
0
votes
2answers
171 views

How to generate a comma seperated list in ant?

How can I generate a comma seperated list from a for loop in ant? I can loop through a source property with ant-contrib for, but I'm not sure how to output to the destination property: ...
0
votes
0answers
96 views

Mapping a comma-separated list of primary-key ids in a string to actual JPA entities

I understand storing a list of primary-key ids in a field of a database as a comma-separated list is not the recommended approach for a many-to-many relationship between tables. However, for legacy ...
0
votes
1answer
15 views

collect values from csv file?

I have a csv file with traceroutes, the last entry in every row is the target IP, but as there are variable no of records in every row ...so I am having difficulty I want to collect the last entry ...
0
votes
10answers
2k views

Adding comma separated strings to an ArrayList and visa versa

How to add a comma separated string to an ArrayList? My string "returnedItems" could hold 1 or 20 items which I'd like to add to my ArrayList "selItemArrayList". After the ArrayList has been ...

1 2