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. webamoeba

    Module to parse e-mail messages?

    woohoo!!!! Thanks Tony! Once I managed to get the Parser module installed properly your piece of code works perfectly!!! Thankyou!
  2. webamoeba

    Module to parse e-mail messages?

    Thanks! will go and try it out! :)
  3. webamoeba

    Module to parse e-mail messages?

    Hi Tony I'm trying to do the same thing but having real problems!!! Did you complete this successfully? Any chance I could have a look at your code? Thanks!
  4. webamoeba

    Create Mail::Message from <STDIN>

    PLEASE HELP!!!! am going crazy!!! :( Obviously I can read that input into an array or even wriote it out to temp file... But how Do I then parse it as a message?????? Thanks.
  5. webamoeba

    running server program from web site problem

    Rather than keeping the script running, wouldn't you be better off with a CRON job?
  6. webamoeba

    Create Mail::Message from <STDIN>

    Hi, I am attempting to update an old script that handles email messages and strips out the attachments and delivers them to the correct folders depending upon their names. The current setup is a nasty hack, and I'm having difficulties getting my head around it! Looking at CPAN there seem to...
  7. webamoeba

    find specif pattern in a string and return it?

    It's ok, I have sorted it now :) But thanks. And sadly no I couldn't do it form the timestamp, because documents can be submitted late or early. But it would have been far nicer!
  8. webamoeba

    find specif pattern in a string and return it?

    lol good timing on that post ;)
  9. webamoeba

    find specif pattern in a string and return it?

    No worries, getting tehre anyways. my god i think im actually starting to understand Regular Expressions!
  10. webamoeba

    find specif pattern in a string and return it?

    oops should also have said that documents without versions need to be copied into the new array as well.
  11. webamoeba

    find specif pattern in a string and return it?

    Hi, I have an array of file names, all of which follow a standard naming convention which includes a verison number. The follwoing are all examples: 522.EC202012 PB v0.1a.doc 522.EC202012 PB v1.doc 522.EC202012 PB v0.1.doc 522.EC207896 FRS v1.1.xls 522.EC207896 FRS v2.xls 522.EC207896 PQ.xls...
  12. webamoeba

    filter array?

    Thankyou!! :D Darn great big O'Reilly Programming Perl book doesn't cover grep grrrrr. :S
  13. webamoeba

    filter array?

    Hi, I want to filter out strings in an array that do not start with the word unit. e.g. unit1, foo, unitYeeHar, bar, Monky, unit, aunit Becomes unit1, unitYeeHar, unit Is there a better way of doing this other then iterating through each element? Thanks
  14. webamoeba

    Select checkboxes on action.

    I'll go have a play see what I can do.
  15. webamoeba

    Select checkboxes on action.

    hmmm, that's what is already in place. To me it makes no sense. It means you canm select what ever checkboxes you like, but if you select somthing from the dropdownbox it over-rides it... Just seems confusing to me. Perhaps there would be a better way of doing this without the dropdown??
  16. webamoeba

    Select checkboxes on action.

    Hi, I have a dropdown selectbox: <select name="units" style="width: 200px;"> <option value="">ALL</option> <option value="">CPT1</option> <option value="">CPT2</option> </select> And a bunch of checkboxes: <label style="width: 60px;"><input type="checkbox" name="unit521"...
  17. webamoeba

    Access Superclass properties???

    I take it all back!! I fudged up my constructor whoopsie
  18. webamoeba

    Access Superclass properties???

    Hi, I have a class called 'Record' and within which there is a property called '_database' which holds an instance of the class 'Database'. Record is then extended by another class called 'UnitGroup', within 'UnitGroup' I want to be able to access {_database}->sql. From 'Record' I can do this...
  19. webamoeba

    ER makes me er.....

    Thanks Kirsle!!! Works like a charm! yay!
  20. webamoeba

    ER makes me er.....

    Hi, I've always had difficulties understanding REs, and today is no exception! I want to be able to replace any occurances of: <person>XXX</person> with: '<a href="somePage.pl?id=XXX">'$this->get('XXX')->toString'</a>' where XXX can be any length and is numeric. How do I do this??? Thanks.

Part and Inventory Search

Back
Top