Tagged Questions
The comma tag has no wiki summary.
31
votes
8answers
2k views
What does the code if ( blah(), 5) {} do?
What does the following code do in C/C++?
if ( blah(), 5) {
//do something
}
26
votes
8answers
1k views
Is this use of the “,” operator considered bad form?
I have made a list class as a means of replacing variadic functions in my program used for initializing objects that need to contain a changing list of elements. The list class has a usage syntax that ...
24
votes
18answers
4k views
Uses of C comma operator
You see it used in for loop statements, but it's legal syntax anywhere. What uses have you found for it elsewhere, if any?
16
votes
1answer
386 views
Haskell tuple constructor (GHC) and the separation between a language and its implementation
Haskell blew my mind yet again when I realised that
(x,y)
Is just syntactic sugar for
(,) x y
Naturally I wanted to extend this to larger tuples. But
(,) x ((,) y z)
Gave me
(x,(y,z))
...
13
votes
5answers
11k views
Add comma to numbers every three digits using jQuery
jQuery plugin to add comma separating numbers into three digits without white spaces and if total digits are under three, then no comma added.
Ex. 2984 => 2,984 and 297312984 => 297,312,984 and 298 ...
10
votes
1answer
261 views
Can someone explain this C++ comma operator short-circuiting example?
Can someone explain this C++ comma operator short-circuiting example?
bIsTRUE = true, false, true;
bIsFALSE = (true, false), true;
bIsAlsoTRUE = ((true, false), true);
Why does the second ...
8
votes
1answer
128 views
Perl period vs comma operator
Does anyone know why
print "$str is " , ispalindrome($str)?"":" not" , " a palindrome\n"
prints "madam is a palindrome"
but
print "$str is " . ispalindrome($str)?"":" not" . " a palindrome\n"
...
7
votes
3answers
458 views
Visual basic handle decimal comma
I'm trying to save variables into text files and the Czech typographic rules drives me crazy.
The program I'm tuning is dedicated to work on Czech localized computers where decimal comma is used but ...
7
votes
1answer
3k views
Comma notation in jQuery?
I've taken a look at some comma notation in the tutorial Coda Popup Bubbles that is using jQuery.
After looking at all the selectors on the jQuery site, I can't seem to find out what the ', this' ...
6
votes
5answers
2k views
C++ - locale-independent “atof”?
I'm parsing GPS status entries in fixed NMEA sentences, where fraction part of geographical minutes comes always after period. However, on systems where locale defines comma as decimal separator, atof ...
5
votes
3answers
190 views
javascript comma operator
i've just read https://developer.mozilla.org/en/JavaScript/Reference/Operators/Special/Comma_Operator
and i think that i'm misunderstanding some things here.. because i thought
alert(1, 2);
should ...
5
votes
5answers
258 views
C++ comma operator in a conditional
I have read in a lot of places but i really can“t understand the specified behavior in conditionals.
i understand that in assignments it evaluates the fisrt operand and discard the result and then ...
5
votes
1answer
449 views
Why doesn't my overloaded comma operator get called?
I'm trying to overload the comma operator with a non-friend non-member function like this:
#include <iostream>
using std::cout;
using std::endl;
class comma_op
{
int val;
public:
void ...
5
votes
7answers
627 views
Abusing the comma operator in C++
I'm looking for an easy way to build an array of strings at compile time. For a test, I put together a class named Strings that has the following members:
Strings();
Strings(const Strings& ...
4
votes
4answers
204 views
remove one comma using a python script
I have csv file with a line that looks something like this:
,,,,,,,,,,
That's 10 commas. I wish to remove only the last (i.e. the 10th) comma, so that the line changes to:
,,,,,,,,,
Has anyone ...
4
votes
4answers
2k views
How to print a double with a comma
In C++ I've got a float/double variable.
when I print this with for example cout the resulting string is period-delimited.
cout << 3.1415 << endl
$> 3.1415
Is there an easy way to ...
3
votes
5answers
84 views
Comma and (decimal) point: Do they need different handling?
Just something that i was wondering about.
In Europe the comma us mostly used for decimals (like 20,001) but outside Europe the point is mostly used (like 20.001)
How does c# handle this ?
In case of ...
3
votes
2answers
365 views
c++: Format number with commas?
I want to write a method that will take an integer and return a std::string of that integer formatted with commas.
Example declaration:
std::string FormatWithCommas(long value);
Example usage:
...
3
votes
6answers
228 views
JavaScript: splitting string from the first comma
I have multiple lines of text in log files in this kind of format:
topic, this is the message part, with, occasional commas.
and I wish to split it from the first comma so I would have the topic ...
3
votes
1answer
109 views
My SQL: rewriting comma delimited data to a structured table
I have a table which consists of the headings Category and Subcategories Within the subcategories heading for each category I have a comma separated list of subcategories.
I would like to rewrite the ...
3
votes
3answers
192 views
Comma operator and void expression
I came across this code snippet 1
int return_printChar1()
{
// code
// oops! no return statement
}
int return_printChar2()
{
// code
return printf("Return");
}
int main()
{
int ...
3
votes
2answers
499 views
Java write to CSV that contains comma
HI, Sorry if this has been asked before but I can't seem to find the answer anywhere...
What I need to do is write strings to a CSV file, the problem is some string contain a , which will seperate ...
3
votes
2answers
494 views
what mean comma in jquery selector
In this code:
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<ul>
<li><strong>list</strong> item 1 ...
3
votes
2answers
397 views
select from a comma separated field in mysql
I'm building a subscription application and I have a subscribers table, that has a row for each user like this..
id name subscribers
1 user1 user2,user3,user4
2 user2 user4,user5,user3
3 ...
3
votes
7answers
2k views
How to Remove last Comma in Jquery?
Here is my code in which i generate comma separated string to provide a list of id to the query string of another page and i get the comma at the end of string.
<script type="text/javascript">
...
3
votes
5answers
1k views
Difference between “,” and “.” in PHP?
I just found that something like
echo $value , " contiue";
will work,but this not :
return $value , " contiue";
While "." works in both occasions.
2
votes
3answers
40 views
Comma operator in FOR loop, how does that work?
Can anyone please explain the comma operator in FOR statement?
function funct_1(c){
for (var a = x, e = y; 0 < c; ){
var p = c/2;
var c = c/10; // wtf, it is already ...
2
votes
2answers
44 views
How to deal with comma in quote for csv file in Java?
I am using opencsv to read csv file. Fields are separated by comma. But in one field, if it contains quote, the comma inside the quote then is not a delimiter. For example, "Hello, World".
The ...
2
votes
2answers
63 views
MYSQL Query - Use format but no commas
I am trying to use format within an SQL query to suit a reporting package. I have numbers that I need to show as currency with two decimal places so I am using the format command to do that. The ...
2
votes
1answer
46 views
SQL Query - List fields
Let's consider the following table as a toy example :
id / to / status
1 / steve,jimmy / 0,2
2 / john,julia / 1,2
3 / julia,peggy / 0,1
I want to get the rows where "Julia" ...
2
votes
2answers
79 views
Pass varchar param to sql file via Batch file
I have a batch file which runs multiple sql files and passes parameters to them.
The input parameters are stored in a txt file which is read by batch file.
I am trying to pass varchar values to IN ...
2
votes
1answer
95 views
Add commas to a javascript countup timer
Here is my program:
<script>
var montharray = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec")
function countup(yr, m, d) {
var today = new ...
2
votes
2answers
65 views
Checking data with commas in a DataTable
EveryBody
I apologize for this newbie question, but I'm looking for a simple solution.
I want to write a fuction that will return a datatable.
like this:
public static DataTable ...
2
votes
2answers
237 views
cfspreadsheet escape comma in comma seperated row insert
The function for adding a row to a coldfusion spreadsheet is SpreadsheetAddrow which accepts data as "A comma delimited list of cell entries, one per column."
Some of my data has commas within it. ...
2
votes
1answer
504 views
Regex Comma Separated Emails
I am trying to get this Regex statement to work
^([_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})+(\s?[,]\s?|$))+$
for a string of comma separated emails in a textbox using ...
2
votes
4answers
270 views
Replace comma + space with “,” but not spaces without commas
I've been looking for a way to replace ", " with ",". I don't want to replace spaces when they don't have a comma in front of them e.g. " ".
Been looking for a solution but can only find replace ...
2
votes
1answer
238 views
Splitting comma separated email addresses in a string with commas in quotes in PHP
Say I have the following email addresses comma separated in a string:
$addrList = 'Kevin.Brine@pppg.com, Robert.Thomas@pppg.com, "Guice, Doug" <Doug.Guice@pppg.com>';
I need the following ...
2
votes
9answers
444 views
How to parse a comma delimited string when comma and parenthesis exists in field
I have this string in C#
adj_con(CL2,1,3,0),adj_cont(CL1,1,3,0),NG, NG/CL, 5 value of CL(JK), HO
I want to use a RegEx to parse it to get the following:
adj_con(CL2,1,3,0)
adj_cont(CL1,1,3,0)
NG
...
2
votes
3answers
1k views
jQuery, Calculation, replace dot with a comma
I have an order form on which I use the jQuery Calculation Plugin to sum up the total.
This summing up works fine, yet there is a problem with the produced 'sum'. In the sum I wish to replace any dot ...
2
votes
4answers
169 views
Javascript comma syntax
Why so many developers write commas this way?
var npm = module.exports = new EventEmitter
, config = require("./lib/config")
, set = require("./lib/utils/set");
Not this way?
var npm = ...
2
votes
2answers
181 views
The limitations of the comma operator
I have read this question and I want to add to it that what are the things that can not be done using the comma operator.This has confused me a lot.As I can do :
int arr[3];
...
2
votes
2answers
1k views
AS3/JavaScript if statement commas instead of &&
This runs in ActionScript 3 and JavaScript. Why? I know how && and || work, but a list? Is this AS3 specific? Is this in other languages? I'm a mouth breathing PHP/AS2 programmer. Or did ...
1
vote
5answers
75 views
Read from a file in Java
Does anybody know how to properly read from a file an input that looks like this:
0.12,4.56 2,5 0,0.234
I want ot read into 2 arrays like this:
a[0]=0.12
a[1]=2
a[2]=0;
b[0]=4.56
b[1]=5
b[2]=0.234
...
1
vote
6answers
64 views
How to check a string is numeric positive
How to check a string is numeric positive and possibly a comma as decimal separator and two decimal places maximum.
Example
10.25 is true
10.2 is true
10.236 is false theres 3 decimal
10.dee is ...
1
vote
4answers
71 views
XSLT 2.0 : Split a string into comma seprated values
I am new to XSLT and have a requirment where in i have to manipulate a string as below.
Input string = "12345"
Output exptected ="12345,1234,123,12"
Can anybody help me to achieve this in XSLT 2.0
...
1
vote
1answer
59 views
Swallowing comma in variadic macros on compilers that do not recognise ##
I need to write a variadic macro in C which must take zero or more arguments.
In gcc, that can be achieved by adding "##" after the comma, e.g. ,##____VA_ARGS____ as answered in Variadic macros with ...
1
vote
1answer
98 views
Contact Form 7 - Mass Checkboxes displayed by line break separation within notification emails
Hello,
I have a question about the checkbox value items that I receive in my mail after someone fills in my contact from 7.
If someone has checked these three boxes in the form:
CHECKBOX1
CHECKBOX2
...
1
vote
4answers
77 views
How to split a string by comma without including comma inside the quotation mark in perl?
I have this code below:
my $file = 'c:\test.log';
open (FILE, "<", $file) or die $!;
my @list = grep /\bAdobe\b/, <FILE>;
my $days;
foreach (@list) {
$days = $_;
print "$days\n";
}
...
1
vote
1answer
65 views
Lifetime of return value in comma separated statements
Is the order of execution of the three commented lines below guaranteed?
struct S
{
S() { /* called 1st */ }
~S() { /* called 3rd */ }
};
boost::shared_ptr<S> f()
{
return ...
1
vote
2answers
72 views
Add commas to javascript variable output [closed]
Possible Duplicate:
how to print number with commas as thousands separators in Javascript
I have found a few posts along these lines but none of them provide the solution i'm looking for. I ...