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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. toolic

    split() on /

    Oops! I forgot to add the "m". ($lvl1, $lvl2, $userid, $filename)= split m{/};
  2. toolic

    split() on /

    You can also use different delimiters for regular expressions. Instead of "//", it is also common to use "{}" in order to avoid escaping the special "/" character. Parentheses are optional with split: ($lvl1, $lvl2, $userid, $filename)= split {/};
  3. toolic

    Populate date from file into database

    I know nothing about databases, but if you are trying to interpolate variable values into a quoted string, you must not use single quotes. For example, '@file[1]' returns the literal string, rather than the value which is in element 1 of the @file array. If you are really trying to access...

Part and Inventory Search

Back
Top