in reply to Re^4: Problem using value of variable in a regular expression
in thread Problem using value of variable in a regular expression

There are a lot of concepts in any programming language that are not easily searchable. Think operator precedence, how to represent array or hash constants, what happens to the loop variable after the loop.

For all of these concepts I'm always glad I have a perl book beside me. The index at the end of the book and especially the circumstance that all special characters are listed in it, helps tremendously.

I don't see a reason why such an index could not be implemented into the perldoc system, but until someone makes the editorial effort a book index is the fastest way to find your way around a language you haven't been properly introduced to ;-)

  • Comment on Re^5: Problem using value of variable in a regular expression

Replies are listed 'Best First'.
Re^6: Problem using value of variable in a regular expression
by JavaFan (Canon) on Jul 30, 2010 at 11:59 UTC
    I don't see a reason why such an index could not be implemented into the perldoc system,
    It's not a matter of just whether something is possible. Even if it's possible (and I think it certainly is - no C or Perl internals knowledge required), someone actually has to step up to the plate and actually do it.