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 derfloh 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 sc0obydo0

  1. sc0obydo0

    Pop up a Select box?

    This is a somewhat odd request, but I need to be able to pop up the contents of a Select box by just clicking a button or something (as in, make a function popup that will automatically pop up the list in a single-select Select box, just by calling that function). Anyone have a clue as to how...
  2. sc0obydo0

    RegEx, matching nestled < table> tags

    oh im stupid...i forgot to post my question... I want it to match each individual &quot;root&quot; table, ie, there are 2 in the example: &quot;bob1&quot; and &quot;bob3&quot;, so that it will return an array consisting of 2 elements. @myarray = m#(?:<table.*?> .*? (?: (?:<table.*?>)*? .*...
  3. sc0obydo0

    RegEx, matching nestled &lt; table&gt; tags

    below is my regex, trying to match the outermost < table> tags that may contain tables within. [CODE] $str =~ m#(<table.*?> .*? ( (<table.*?>.*?)*? .*? ( .*?</table>)*? )*? .*? </table>)#gisx; ie: < table> < tr> < td> < table> < /table> < /td> < /tr> < /table> < table>...

Part and Inventory Search

Back
Top