Got some syntax error I can't spot. Can you (I hope)?

Hi all,

I pulled my problem code from my app into a test on http://www.pastie.org/436616.

Lines 13-19 are the problem code in my app.

Lines preceding them I set up needed definitions and test individual
components of the problematic code.

The final lines display the error lines 13-19 produce. Can you see
what the problem is?

Thanks in Advance,
Richard

I pulled my problem code from my app into a test on http://www.pastie.org/436616\.

Lines 13-19 are the problem code in my app.

Lines preceding them I set up needed definitions and test individual
components of the problematic code.

The final lines display the error lines 13-19 produce. Can you see
what the problem is?

Precedence problem with + and % apparently. This works:

puts(("Considering saving the trade-group" +
  "\tfor symbol \"%s\", "+
  "\tgroup size: %d, " + "\tand # groups saved thus far: " +
      "open(%d), " +
      "completed(%d)") % [savedSymbol, tradeGroup.size, openTrades.size, completedTrades.size])

Regards,

Bill

···

From: "RichardOnRails" <RichardDummyMailbox58407@USComputerGurus.com>

Hi all,

I pulled my problem code from my app into a test on http://www.pastie.org/436616\.

Lines 13-19 are the problem code in my app.

Lines preceding them I set up needed definitions and test individual
components of the problematic code.

The final lines display the error lines 13-19 produce. Can you see
what the problem is?

It's a precedence thing - % has higher precedence than +. Try this:

# before
puts "Considering saving the trade-group" +
  "\tfor symbol \"%s\", "+
  "\tgroup size: %d, " +
  "\tand # groups saved thus far: " +
      "open(%d), " +
      "completed(%d)" %
      [savedSymbol, tradeGroup.size, openTrades.size, completedTrades.size]

# after

puts ("Considering saving the trade-group" +
  "\tfor symbol \"%s\", "+
  "\tgroup size: %d, " +
  "\tand # groups saved thus far: " +
      "open(%d), " +
      "completed(%d)") %
      [savedSymbol, tradeGroup.size, openTrades.size, completedTrades.size]

martin

···

On Sat, Apr 4, 2009 at 11:34 AM, RichardOnRails <RichardDummyMailbox58407@uscomputergurus.com> wrote:

Thanks in Advance,
Richard

My brain finally thawed. I a movie decades ago, a Dustin Hoffman
character was told the "plastic" was the key to success. For my
current problem, the key was "parentheses"! I appended the
correction to the Pastie post.\

My apology for wasting your time with my stupidity.

Best wishes,
Richard

···

On Apr 4, 2:04 am, RichardOnRails <RichardDummyMailbox58...@USComputerGurus.com> wrote:

Hi all,

I pulled my problem code from my app into a test onhttp://www.pastie.org/436616.

Lines 13-19 are the problem code in my app.

Lines preceding them I set up needed definitions and test individual
components of the problematic code.

The final lines display the error lines 13-19 produce. Can you see
what the problem is?

Thanks in Advance,
Richard

I pulled my problem code from my app into a test onhttp://www.pastie.org/436616.

You might want to take a look at ruby's heredoc syntax:

Instead of

    a = ("foo" + "(%d)" + " bar") % 123

you could also use:

    a = <<TEXT % 123
    foo(%d) bar
    TEXT

Hi Bill,

Many thanks for your solution. It looks like you posted your response
about 15 minutes after I posted my question.

I posted my Eureka moment about an hour after I posted my question,
though it seemed to me to have been much sooner than that, so I never
checked to see whether anyone had posted a response.

So I don't know which to be happier about. That my brain began
functioning again, of that this newsgroup is attended by such
wonderful people like you and Martin.

Again, thank you and
Best wishes,

Richard

···

On Apr 4, 2:20 am, Bill Kelly <bi...@cts.com> wrote:

From: "RichardOnRails" <RichardDummyMailbox58...@USComputerGurus.com>

> I pulled my problem code from my app into a test onhttp://www.pastie.org/436616.

> Lines 13-19 are the problem code in my app.

> Lines preceding them I set up needed definitions and test individual
> components of the problematic code.

> The final lines display the error lines 13-19 produce. Can you see
> what the problem is?

Precedence problem with + and % apparently. This works:

puts(("Considering saving the trade-group" +
"\tfor symbol \"%s\", "+
"\tgroup size: %d, " +
"\tand # groups saved thus far: " +
"open(%d), " +
"completed(%d)") %
[savedSymbol, tradeGroup.size, openTrades.size, completedTrades.size])

Regards,

Bill

Hi Martin,

I posted an equivalent of the following post to Bill Kelly:

Many thanks for your solution. It looks like you posted your response
about 20 minutes after I posted my question.

I posted my Eureka moment about an hour after I posted my question,
though it seemed to me to have been much sooner than that, so I never
checked to see whether anyone had posted a response.

So I don't know which to be happier about. That my brain began
functioning again, of that this newsgroup is attended by such
wonderful people like you and Bill.

Again, thank you and
Best wishes,

Richard

···

On Apr 4, 2:21 am, Martin DeMello <martindeme...@gmail.com> wrote:

On Sat, Apr 4, 2009 at 11:34 AM, RichardOnRails > > <RichardDummyMailbox58...@uscomputergurus.com> wrote:
> Hi all,

> I pulled my problem code from my app into a test onhttp://www.pastie.org/436616.

> Lines 13-19 are the problem code in my app.

> Lines preceding them I set up needed definitions and test individual
> components of the problematic code.

> The final lines display the error lines 13-19 produce. Can you see
> what the problem is?

It's a precedence thing - % has higher precedence than +. Try this:

# before
puts "Considering saving the trade-group" +
"\tfor symbol \"%s\", "+
"\tgroup size: %d, " +
"\tand # groups saved thus far: " +
"open(%d), " +
"completed(%d)" %
[savedSymbol, tradeGroup.size, openTrades.size, completedTrades.size]

# after

puts ("Considering saving the trade-group" +
"\tfor symbol \"%s\", "+
"\tgroup size: %d, " +
"\tand # groups saved thus far: " +
"open(%d), " +
"completed(%d)") %
[savedSymbol, tradeGroup.size, openTrades.size, completedTrades.size]

martin

> Thanks in Advance,
> Richard

Hi Leo,

Nice idea! Saves typing (and mistyping!) all those quotes, pluses, \n
and \t. Works great!

Many thanks and
Best wishes,
Richard

···

On Apr 4, 12:34 pm, Leo <minil...@gmail.com> wrote:

> I pulled my problem code from my app into a test onhttp://www.pastie.org/436616.

You might want to take a look at ruby's heredoc syntax:

Instead of

a = \(&quot;foo&quot; \+ &quot;\(%d\)&quot; \+ &quot; bar&quot;\) % 123

you could also use:

a = &lt;&lt;TEXT % 123
foo\(%d\) bar
TEXT