in reply to Re^3: Regular Expresion
in thread Regular Expresion

By that logic, you would come to the conclusion being a good programmer means everything is a one-liner.

I disagree. Multiple lines wins except in the case of repeating yourself.

Replies are listed 'Best First'.
Re^5: Regular Expresion
by apl (Monsignor) on May 15, 2009 at 11:59 UTC
    By that logic, you would come to the conclusion being a good programmer means everything is a one-liner.
    I sometimes get that impression from my fellow Monks; I'm as prone to golfing as the next guy. 8-)
    I disagree. Multiple lines wins except in the case of repeating yourself.
    My sentiment, generally, though I try to merge redundant sequential statements (multiple concatenations, rather than merely breaking a statement over several lines) and prefer ?: over a simple if involving assignments.

    So I guess the line is hard to draw. Why is it okay to use ?:, but not a clever regex?

      "So I guess the line is hard to draw. Why is it okay to use ?:, but not a clever regex?"

      Readability. I'd accept a "clever regex" with the x modifier and commenting.