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 TouchToneTommy 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 ryorinin07

  1. ryorinin07

    Strange problem with join() and newline characters ...

    Wow, that makes things easier, doesn't it? Thanks. Still, I'd like to figure out why it is that 1's keep getting added ... anyway, once I get more time I'll post the code here. Right now, all I can provide is a sort of paraphrase ... #!/usr/bin/perl #then some code, then ... $file =...
  2. ryorinin07

    Strange problem with join() and newline characters ...

    Yeah, I just print $data after that. ... I probably should put a die statement after that open(), though. :) Oh, and I put the file data into a variable because I do a lot of parsing and whatnot with the data, then send back the finished result.
  3. ryorinin07

    Strange problem with join() and newline characters ...

    ... Part of a script I wrote involves reading a file into an array then putting that array into one character string. Since I wasn't sure whether there was a shortcut to do that (just read a file into a scalar, no array), here's what I did: open(f, &quot;$filename&quot;); @file = <f>; close(f)...

Part and Inventory Search

Back
Top