Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by AndrewRR

  1. AndrewRR

    Regex Question

    Thanks for reply Could you explain again, why - is part of found string? I thought if I use .+? with ? it means the smallest possible string to find....
  2. AndrewRR

    Regex Question

    Hello Could you help me with regex related question? I have code: -------------- $s = '-html=-head=head data-head=-body=BODY-body=-html='; while ($s =~ /=(.+?)-/gxis) { print "$1\n"; } -------------- when I run this code I see results: --------- -head=head data -body=BODY --------- but...

Part and Inventory Search

Back
Top