Comma is used to indicate a separation of elements within the structure of a sentence.
1
vote
1answer
47 views
Assigning Comma Delimited Data to Vector
I have some comma delimited data in a file, like so:
116,88,0,44
66,45,11,33
etc. I know the size, and I want each line to be its own object in the vector.
Here is my implementation:
bool ...
0
votes
1answer
23 views
xsd pattern for comma seperated list of single character
i have a problem in below xsd schema how can i restrict comma separated string to only one character like this
<status>A,B,C,D</status>
currently i am using below code to create ...
-1
votes
4answers
91 views
Why doesn't comma operator seem to work between a “if” statement and an “else” statement in my code?
I know a statement like the following (commas in place of semi-colons) looks odd:
if(a<b)printf("Hello\n"),a+=5,b/=5,printf("%d,%d",a,b);
But it works perfectly fine and I had read that it's ...
0
votes
3answers
27 views
Removing last comma in array when looping without turning it into a string
I have a set of tags that I stored in the database separated by spaces as a string. When I echo them out with php, I explode them and loop through them with a for loop.
My code looks something like ...
17
votes
6answers
651 views
What does a comma separated list of values, enclosed in paranthesis mean in C? a = (1, 2, 3); [duplicate]
I've just come across code that essentially does the following:
int a = (1, 2, 3);
I've never seen this notation before. What does it mean?
0
votes
0answers
44 views
D3 remove comma delimiters for thousands
I have a .json with 3 columns where one of them is 'Year'. The column contains only years. No dates!.
When I am graphing it on the 'x' axis the years come out with a comma delimiter for thousands.
...
0
votes
1answer
25 views
Can Joomla make auto currency to displayed after typing specific format?
I have seen websites that if the user wrote some specific format like this in the back-end for example :
Polo Shirt , 500
V-Neck Shirt , 500
Pijamas , 500
Polo Shirt , 750
Jeans , 750
Then in the ...
0
votes
2answers
38 views
Replace dot to comma jQuery (newbie)
im new in the community, im trying to replace the dot to comma in a simple math operation, i really need help. Many thanks to all.
something like this: jQuery Replace dot to comma and round it
...
0
votes
2answers
36 views
grep for words ending in 'ing' immediately after a comma
I am trying to grep files for lines with a word ending in 'ing' immediately after a comma, of the form:
... we gave the dog a bone, showing great generosity ...
... this man, having no home ...
but ...
0
votes
0answers
18 views
Access 2007: Alternative to comma join and parameter queries
I have some queries like the following:
SELECT StoresCasesByMonth.Category, StoresCasesByMonth.Chain, Sum(StoresCasesByMonth.CasesShipped) AS CasesShipped
FROM StoresCasesByMonth, QueryDates
WHERE ...
0
votes
2answers
17 views
Parsing Exchange Recipients from a string with Regex
I'm about to break this down into two operations since I can't seem to figure out the regular expression to do it in one. However, I thought I would ask the brain trust here to see if anyone can do it ...
0
votes
1answer
62 views
How to group rows using LINQ to Entity separating values with commas?
Below is my LINQ Query, that im using to select ITEMS:
protected void Page_Load(object sender, EventArgs e)
{
whatsmydiscountEntities ctx = new whatsmydiscountEntities();
int ...
2
votes
2answers
38 views
SQL Select where id is in `column`
I have a column that has multiple numbers separated by a comma. example for row:
`numbers`:
1,2,6,66,4,9
I want to make a query that will select the row only if the number 6 (for example) is in ...
1
vote
1answer
33 views
What is the point of wrapping JavaScript statements in parentheses?
I have discovered that wrapping different statements in parentheses will return the last one:
(34892,47691876297,2000) => 2000
('test',73,document.createElement('p')) => ...
1
vote
2answers
48 views
PHP JSON Format Currency Comma
I'm new to PHP.
My code reads a price value from a Steam game's json data.
http://store.steampowered.com/api/appdetails/?appids=8870
Problem is that the value of the price node is not formatted ...
0
votes
1answer
67 views
jQuery: Increment number using animate with comma
I'm trying to increment a number inside an element on page. But I need the number to include a comma for the thousandth place value. (e.g. 45,000 not 40000)
<script>
// Animate the element's ...
4
votes
4answers
98 views
Perl - Regex to extract only the comma seperated strings
I have a question I am hoping someone could help with...
I have a variable that contains the content from a webpage (scraped using WWW::Mechanize).
The variable contains data such as these:
$var ...
0
votes
2answers
20 views
How do I read a certain string on a line from a file, using scanner?
I'm trying to read a text file which looks like this:
A,32,0,0,0,0
And right now I have a static method which reads from that file. I'm getting this NoSuchElement exception, while earlier I had a ...
0
votes
1answer
70 views
Comma separated values count
Table Pattern has single column with the following values:
NewsletteridPattern
------------
%50%
%51%
Table B has the following values:
SubscriberId NewsletterIdCsv
------------ -----------------
...
1
vote
1answer
18 views
Regex for splitting txt db file
I'm writing a txt database file to sql converter, and I need to split the items in the rows. The problem is that among the items there might be scripts which can hold multiple commas (which are the ...
3
votes
2answers
78 views
Are “arithmetic expressions” separated by commas allowed in C or we need separate statements for each?
In C, is the following statement
a+=3,b=c*2,d=a+b;
equivalent to the following block of statements :
a+=3;
b=c*2;
d=a+b;
I am sure you got my point.Can we safely use multiple mathematical ...
0
votes
3answers
516 views
How restrict textbox in C# to only receive numbers and (dot “.” or comma “,”), after “.” or “,” only allow 2 number characters
i am trying develop a code to restrict TextBox using C# to only allow numbers entry + comma(",") or dot(".") + only 2 numbers after dot or comma
So this way see possible numbers that can entry:
...
-2
votes
3answers
47 views
Returning different types in Python [closed]
Noob question, but:
Say you have a, which equals 90; and b, which equals 100; and you want to return
"90 is less than 100"
How do you get it to return (not print) "90 is less than 100" rather than "a ...
0
votes
2answers
79 views
Perl Split function with comma
I have a file which shall have lines like,
<tag host="xyz|abc" some info />
<tag host="ijk,cdf" some info />
I'm getting the information of the host by using pattern matching and I'd ...
0
votes
2answers
57 views
Comma-separated column value in DataGrid in WPF
I am using DataGrid in WPF. I am binding list of Teacher class to the DataGrid.
class Teacher
{
public string Name{get;set;}
public int Age{get;set;}
public List<Subject> Subjects ...
0
votes
0answers
25 views
Handlebars, whitespace control
i want fine control of whitespace but still have readable templates.
Just wanted to see if other's solution to by simple use case.
{{name}}
{{#if age}}
, {{age}}
{{/if}}
# outputs {{name}} , ...
3
votes
2answers
101 views
How to print commas to a .csv file using PrintWriter in Java?
I have problems printing text to a .csv file. My String has a comma in it, and i end up printing it to TWO cell instead of ONE. Here is the code:
String companyName1 = "Edison Corporation, LLC co";
...
1
vote
2answers
22 views
How to manage number values with points?
$val represents 1,949.58 from my sql
$sold = 50;
if ($val>$sold){
echo "true";
}
else
{
echo "false";
}
I get false. somehow 50 is bigger than 1,949.58 and this ...
0
votes
3answers
112 views
C++ - Read in file lines separated by a comma
I tried looking up what I'm trying to do but I cant find specifically what I'm trying to do. I have a text file with multiple lines that look like this:
12345,12345,12.34,12345,12345
It's the same ...
0
votes
2answers
106 views
How to delete lines from csv file that have only one record using dos batch file
I need a dos batch file to delete single record lines for a multi line csv file. The file is in the correct comma(,) seperated variable format. I have been trying with "for /f" batch command with no ...
2
votes
0answers
130 views
Sorting & Matching Comma Separated String Values (PHP / mySQL)
I am hoping to get some assistance today regarding the following:
I have two fields in my database table that I need to sort out and match up. On is staff_id and the other is staff_name.
staff_id = ...
0
votes
1answer
39 views
Fetch the Records from the comma seperated column from the table through stored procedure [duplicate]
I have a a table that store values like this:
Name CategoryId
Gaurav 4,6
Amit 2,4
Ajay 6,2
2,4,6 (This is the id of category that name is present in their master table)
The ...
-5
votes
2answers
85 views
PHP form that echo's a comma separated list [closed]
I am trying to have a form that a user can selected multiple checkboxes with certain values. The server side would then take the user input and echo a sentence with a comma separated list.
<input ...
0
votes
2answers
42 views
How to separate comma-separated string into arrayList?
I used select statement to get names from db. The names are stored in a single row with comma separation. So the return type is object. How do I split the String and store it into an ArrayList? Please ...
0
votes
0answers
58 views
Comma Gem, multiple lines of csv
I am using Comma Gem (https://github.com/crafterm/comma) with Rails, I was wondering if there is a way to create multiple lines of CSV against an instance of model.
Lets say I have two models A & ...
12
votes
4answers
250 views
Use of commas versus semicolons in JavaScript?
Given the following code
var fn = function () {
var x = 'x',
y = 'y';
this.a = 'a',
this.b = 'b',
this.c = 'c';
this.d = 'd',
this.e = 'e';
}
You can see that there ...
0
votes
1answer
105 views
Escaping commas in a csv file Perl
I am having to read in a text file with 19000 entries, rearrange them, and then put them back into a csv file. The problem is that some of the entries contain a comma and when I output back into a csv ...
1
vote
3answers
69 views
what do comma operators do in an “eval()”?
I am trying to learn java, and ive come across this code in an old UIL practice test, and i can't figure out what this part of the code is doing.
d[i][j] = eval(d[i-1][j]+1
[i][j-1]+1, d[i-1][j-1] + ...
0
votes
1answer
72 views
Comma and no period in dollar price
When I make my add to cart-button, the price (in dollars) is displayed 18,00, and not 18.00, which makes some customers think that the price is eighteen hundred dollars instead of eighteen dollars. ...
1
vote
2answers
189 views
How To Parse Delimiter Comma Separated String For First 4 Values in Java
I'm currently trying to parse through a string with the output of 1_3_5_1,1_3_7_1,1_4_9_1
I have run a for loop:
String[] row;
for(String value : selValues.split("\\,")){
...
0
votes
1answer
203 views
datatables… Sort don't work with numeric-comma… Why?
I use the jquery datatables with server_processing.
This reminds me server_processing in datatables
numbers (or words?) with the ',' separator for decimal.
$ inter = trim ($ aRow ['carat']);
$ row [] ...
1
vote
2answers
62 views
Concatenate dictionary keys seperated by comma's
I'm looking for a better way to concatenate dictionary keys, this is what I'm doing now :
Dictionary<int, string> myList = new Dictionary<int, string>();
myList.Add(1, "value");
...
0
votes
2answers
99 views
How to check if float is a whole number?
There is some kind of function for the printf function in which you can use %g, which will show the whole number 3 if the float is 3.00 and will show 3.01 if it's actually a float, is there any way ...
-3
votes
4answers
51 views
Ruby odd comma use with a sequence of variables [closed]
Hello StackOverflow crew!
We are doing some Ruby and there appeared an example we seem to have difficulties to figure out:
a=5
b=4
a,b=a+b,a
=> [9,5]
=> a=9
=> b=5
How come? What's ...
2
votes
2answers
132 views
How can I set the comma to be a decimal point? [duplicate]
I would like to read and write pi as 3,141592 instead of 3.141592 as it is common in many european countries. How can I accomplish this with iostreams? In other words
cout << 3.141592;
should ...
0
votes
1answer
135 views
Removing unnecessary commas when concatenating variables into a comma separated list?
When I concatenate PHP variables to form a comma separated list it adds a comma regardless of whether or not that variable has a value.
How can I remove the unnecessary commas when concatenating ...
-1
votes
3answers
90 views
Print an array(object?) without comma seperator
I am currently writing a large amount of code, but I will keep it simple. I have a javascript array (possibly an object, still unsure exactly of the conventional naming), here is the initialization ...
4
votes
1answer
100 views
Can compiler skip evaluation of comma operator's left operand?
Compiler optimization can sometimes skip evaluation of certain statements which have no consequence. However, does this apply to the comma operator too?
The following code runs without any error on ...
1
vote
1answer
68 views
cin in C++ ignores spaces — basic programming [duplicate]
I am creating a basic search function for an entry level programming course and ran across this problem.
string query;
cout<<"Enter a query: ";
cin>>query;
...
7
votes
3answers
260 views
Please Explain Comma Operator in this Program
Please explain me the output of this program.
int main()
{
int a,b,c,d;
a=10;
b=20;
c=a,b;
d=(a,b);
printf("\nC= %d",c);
printf("\nD= %d",d);
}
The ...





