15
votes
18answers
1k 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?
4
votes
7answers
308 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(con …
0
votes
2answers
43 views
WCF client endpoint certificate reference, how to find when there’s a comma in the distinguished name parts?
We are trying to reference a certificate for a client endpoint configuration in our WCF configuration file.
The configuration looks like this:
<client>
<endpoint add …
0
votes
5answers
123 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
4answers
216 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 th …
4
votes
5answers
323 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 dec …
26
votes
9answers
2k views
What does the code if ( blah(), 5) {} do?
What does the following code do in C/C++?
if ( blah(), 5) {
//do something
}
1
vote
3answers
109 views
How can I check for the correct location of commas in a number entered by a user?
I'm looking for a good way to check a number that a user has entered for correct position of an optional comma(s).
For example
1,000,000.00 = correct
1000000 = correct
1,00,000.0 …
0
votes
1answer
342 views
Adobe Flex - Textinput messing up with commas
In Adobe Flex, I'm trying to restrict the input to allow the user to type only a list of IP addresses, separated by a space or a comma. Currently, I have:
I expected it to be ab …
0
votes
4answers
521 views
How would I remove all commas not inside parenthesis from a string in C#?
I have a mathparser that can do functions like "IntPow(3,2)". If a user pastes "1,000,000" and then adds a plus symbol, making the full equation "1,000,000+IntPow(3,2)" the parser …
1
vote
3answers
1k views
SAS function to strip apostrophes from a character string (compress?)
I have a string which looks like this:
"ABAR_VAL", "ACQ_EXPTAX_Y", "ACQ_EXP_TAX", "ADJ_MATHRES2"
and I'd like it to look like this:
ABAR_VAL ACQ_EXPTAX_Y ACQ_EXP_TAX ADJ_MATH …
0
votes
1answer
161 views
GCC: Is it possible to disable the “comma at end of enumerator list” warning when using -pedantic?
Hello,
I'm compiling C++ code and I'd like to enable the -pedantic option.
I'm using GCC 4.0, running Xcode on Mac OS X Leopard.
It is for example possible to allow variadic macro …
2
votes
2answers
461 views
as3/javascript if statement> commas instead of &&
This runs in as3, 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. …
0
votes
8answers
1k views
How can I best parse this comma delimited text file?
Hi, I am trying to figure out the best way to parse this comma delimited text file. Here is an excerpt:
bldgA, fred, lunch
bldgA, sally, supper
bldgB, bob, parking lot
bldgB, fr …
0
votes
1answer
296 views
Comma notation in jQuery?
So I've taken a look at this some comma notation in this tutorial using jQuery. The link is here: http://jqueryfordesigners.com/coda-popup-bubbles/.
After looking at all the selec …
