Perl regular expression

Ask a Question related to PERL Beginners, Design and Development.

  1. #1

    Default Perl regular expression

    Need a pattern to find string and words between braquets
    [abcdefg]
    ???
    Michel Guest

  2. Similar Questions and Discussions

    1. Regular Expression - Need Help
      Hi, I have the following: <cfset input =" Origin: cohnok-530a (190.068.59.250) Type: ...
    2. regular expression - help
      can anyone translate this into plain english? preg_match_all("/(\w+)+/U", $text, $words);
    3. Perl regular expression does not work on 5.8.0
      Good afternoon, we have a perl regular expression which always worked for us on Solaris(SPARC) HPUX(IA64) and Debian GNU/Linux(i386). But now I...
    4. Perl program need in regular expression
      I want a program can read a log file and capture the character seg=9543 The file log line like this ...
    5. Regular Expression....?
      Hi I am looking for the regular expression for validating the allowed file types to upload like files like "zip,pdf,doc,rtf,gif,jpg,png,txt"; and...
  3. #2

    Default Re: Perl regular expression

    How about

    $str_w_brackets =~ /\[(\w*?)\]/ ;
    my $word = $1 ;

    "Michel" <mikechico75@hotmail.com> wrote in message
    news:81644a0f.0401291422.620bea89@posting.google.c om...
    > Need a pattern to find string and words between braquets
    > [abcdefg]
    > ???

    mkarlow Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139