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 bkrike 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 Neomalfoy

  1. Neomalfoy

    Problem reading cookie for cart

    Thanks for the suggestion about "numitems" and firebug. I installed firebug. I've got the script working and doing exactly what I want it to do. I'm storing "numitems" into a cookie in my additems and updatecart functions then checking the status of the "numitems" cookie to repopulate the items...
  2. Neomalfoy

    Problem reading cookie for cart

    I've tried to figure this out for the past few days and I need other eyes looking at it besides me because I can't locate where I am going wrong with this script. [I can't use sessions, this has to be done with cookies.] The script creates the cookies when items are added to an items array...
  3. Neomalfoy

    Synchronization problem on different computer

    That is probably the root of the problem, the computer the design master was created on doesn't exist anymore, but I do have the design master. When I try to synchronize from the design master the only option I can click on under replication options is 'create replica' the other ones i.e...
  4. Neomalfoy

    Synchronization problem on different computer

    I have a master access 2007 db that I was given (I did not create the original master db) and I also have a replica of the db that was updated on a different computer. I am trying to synchronize the replica with the master. I though I could get the replica to find the master by using the recover...
  5. Neomalfoy

    Ruby Install Problem

    I also used that guide to install and it caused problems for me also, just not the ones you are having. In my firewall, the ruby interpreter has permission to access to the internet and also permission to act as a server. I would recommend that you create a workspace folder in htdocs and then...
  6. Neomalfoy

    Remove word from phrase, logical OR problem?

    I gave up using split and used a regular expression instead, and it's working now.
  7. Neomalfoy

    Remove word from phrase, logical OR problem?

    I'm running it on both windows and unix. I get the same results in my output files even after changed to chomp and the names of the variables. Sample output: As I said earlier, I can filter out stopwords in the first position but can't get it to filter out from the second/third/etc...
  8. Neomalfoy

    Remove word from phrase, logical OR problem?

    Hi Ishnid, thanks for the tip it will help me out when I want to remove all stopwords which is not what I want to do in this case. I should have explained better. I am examining each word and determing if it's a stopword because the phrase will be in a certain format after processing that...
  9. Neomalfoy

    Remove word from phrase, logical OR problem?

    The script is partially working. It should read in a list of words in the form word_word (or word_word_word etc. eventually), splits on the underscore and if a stopword is found for either position then it won't be in the new list created. This works for stopwords in the first position but...
  10. Neomalfoy

    Possible to assign value of range to a variable?

    Hi, using slurp mode did the trick. Thanks.
  11. Neomalfoy

    Possible to assign value of range to a variable?

    foreach $textline (@text){ #for everyline in the test file $_ = $textline; if(/(Position\:|Direct-Hire Position)\s+/g ... /\s+(.*\n.*)/g){ $result = $1; chomp($result); $result =~ s/\s+/ /g; # return "$result "; next; print OUTFILE1 "$result "; next...
  12. Neomalfoy

    Regex subroutine/files in dir

    msg00165.txt __From__: GNRjobs __Subject__: US - CA - Video - Real-time Firmware Eng ID 162851 __Date__: Thu, 06 Nov 2003 01:34:24 -0600 -------------------------------------------------------------------------------- <=<=<=<=<=<=<=<=>=>=>=>=>=>=>=> GNR is a technical recruiting firm with...
  13. Neomalfoy

    Regex subroutine/files in dir

    msg0068.txt __From__: GNRjobs __Subject__: US- TX - Analog IC Engineer - PLL BiCMOS ID# 586603 __Date__: Sat, 27 Sep 2003 07:19:08 -0500 -------------------------------------------------------------------------------- Apply for this position on-line... http://www.globalnetr.com/resume/md/...
  14. Neomalfoy

    Regex subroutine/files in dir

    I have two problems a) I am trying to apply a subroutine to each file in a dir, and the subroutine only prints the result for the first file in the dir for all the files. rfiles/msg00068.txt Location: TX Title: Analog IC Engineer - PLL BiCMOS Salary: $90k - $135 + bonus + stock opt's...

Part and Inventory Search

Back
Top