in reply to Re^3: regular expression function: grep, split, substr OR NO need?
in thread regular expression function: grep, split, substr OR NO need?

further question
if talking about module, it means OO object oriented?
  • Comment on Re^4: regular expression function: grep, split, substr OR NO need?

Replies are listed 'Best First'.
Re^5: regular expression function: grep, split, substr OR NO need?
by choroba (Cardinal) on Sep 09, 2013 at 10:11 UTC
    Instead of asking all the basic questions, you might try reading a book or Perl documentation.
    لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ
Re^5: regular expression function: grep, split, substr OR NO need?
by tobyink (Canon) on Sep 09, 2013 at 10:15 UTC

    Some modules provide an OO interface (e.g., LWP::UserAgent). Others export functions for their caller to use (e.g. List::Util). Others do neither and instead affect the behavior of Perl (e.g. strict).

    use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name
Re^5: regular expression function: grep, split, substr OR NO need?
by Anonymous Monk on Sep 09, 2013 at 10:26 UTC