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 wOOdy-Soft 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 Ardeaem

  1. Ardeaem

    regexp question

    but let's say $str="abcd('','\\'Hello'\\','don\\'t','blah')"; I want it to return four things: "","\\'hello\\'","don't", and "blah". I don't think the above rexexp would do that, but thanks for the help.
  2. Ardeaem

    regexp question

    I've searched several places for an answer to this, but haven't found one, so here goes: I have a string that looks something like this: abcd('blah','blahblah','blee') and I want a regexp to match and return everything inside two single quotes. In this case, blah, blahblah, and blee. There...
  3. Ardeaem

    getting data out of fork()s

    Thanks for your reply. I found this shortly after my post, and attempted to implement a pipe. As you can see, in the code above, there would be multiple forks writing to the pipe (wich the parent listening). There only seems to be one fork (the first) getting through. After the wait block, I...
  4. Ardeaem

    getting data out of fork()s

    I have the code below. As you can see, in the child processes, I'd like to have data pushed onto an array (@test). However, nothing ever gets pushed. I've tried push, I've tried setting $test[$x]=time; I've tried using scalars, I just can't get any data out of the fork()ed processes. What's...

Part and Inventory Search

Back
Top