vote up 0 vote down star
1

Hello, I'm new at Bison, but in C/C++ no and at this time of development and regular expressions i never heard something like this, only the \n that's used for a new line, but i want to know what is the explanation of \t%.10g, that in the code is like this:

line:     '\n'
        | exp '\n'  { printf ("\t%.10g\n", $1); }
;

Best Regards.

flag

This is not a regular expression so I've retagged it. – Kinopiko Oct 12 at 13:03
Ok, thanks and sorry! :( – Nathan Campos Oct 12 at 13:06

3 Answers

vote up 5 vote down check

It means "print a tab character (\t) followed by a floating point number with 10 decimal places, either in scientific or fixed point notation depending on the order of magnitude (%.10g), followed by a newline (\n)".

link|flag
Thanks very much! – Nathan Campos Oct 12 at 13:04
@Nathan: You betcha! Good luck with Bison! – Drew Hall Oct 12 at 13:09
vote up 3 vote down

Have a look at the printf reference to decode the pattern:

g Use the shorter of %e or %f

e Scientific notation (mantise/exponent) using e character

f Decimal floating point

Thus, %.10g prints a decimal number with ten significant digits.

link|flag
Actually, there is a slight difference between %g and [either %e or %f]: the precision specifies the number of significant digits, for [%e or %f] it specifies the number of digits after the decimal point. – avakar Oct 12 at 14:47
vote up 2 vote down

It's not a regex but a printf format specification : Print a tab character followed by a floating point number with 10 digits behind the decimal point, either %f (floating point notation) way or %e (scientific notatation) way, whichever is shorter, and end with a newline.

man printf
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.