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 vpalag

  1. vpalag

    mailer, 550 Error: Message content rejected

    Hi I have the following code: my @body = "TEST MESSAGE"; chomp( @body ) ; my $from = 'admin@mydomain.com' ; my $to = 'myname@mydomain.com' ; my $subject = "Test"; my $xml = "<mailer expand='no'><from><email>$from</email></from><to><email>$to</email></to><subject>$subject</subject>" ...
  2. vpalag

    Multiple values

    Hi, I have the following dropdown. <select name=&quot;branchmenu&quot; multiple=&quot;true&quot;> <option value=&quot;1&quot;>1</option> <option value=&quot;2&quot;>2</option> <option value=&quot;3&quot;>3</option> </select> I have the follwoing code in perl $val=...
  3. vpalag

    replacing www.somesite.com with javascript openwindow

    Hi, I have large number of html files in various directories. In each of the html I need to find all the external urls and replace with a javascript that shows a disclaimer window. I am getting trouble with the special charecters... Please help me , I appreciate. Thanks Eg. <A...
  4. vpalag

    Anchors in Image map

    Hey xup, Thanks for your reply, I have this in my code already in the &quot;New&quot; part of the imgmap....but still don't work. Lemme see, Cheers, VP
  5. vpalag

    Anchors in Image map

    Hi All, I need a help on Image map. I want to create anchors to specific parts of image map. I tried to do the following way but it always jumps down to the begining of Image map. For example if I click on the link &quot;New&quot; it would like to jump to the new portion of image map. Please...
  6. vpalag

    simple regex

    Thanks Krel, It's working. My mistake was I had a $body =~ s|</p>|<br>|g before this - Venu
  7. vpalag

    simple regex

    Actally I had &nbsp; in the $body....I could not see it in my posting. $body = 'blah blah <H1>SOME THING</H1> <p>ampnbsp</p>'; Please read amp as &. Thanks, Venu
  8. vpalag

    simple regex

    Hi, My $body has some tags in the following fashion <p>&nbsp;</p> I am not able to clean them up by using $body =~ s|<p>&nbsp;</p>||g; Please help me if some one knows why it is not working. Appreciate quick reply. Pala
  9. vpalag

    How to find missing letters

    Hi, I need to generate a list of letters that are missing between to alphabets. let's say my list should look like B,C,D,E,F,G if I pass A and H. Any ideas please let me know. I appreciate the help. alag
  10. vpalag

    Need help on regular expressions in improving code

    Hi Mark, That works fine. Thanks for the short cut. One thing is I might have many <a href>s in the html paragraph. I need them all of them to change in this fashion. As of now it does for only the first ahref. Please let me know , Thanks again, V
  11. vpalag

    Need help on regular expressions in improving code

    Hi All, I am a beginer to regular expressions. My requirement is to change / with + for the urls in html. I dont need to do this for http:// urls though. I wrote a peice of code, but looked to me that there should be more efficient way to do this....Please suggest me, I will be grateful. I 've...

Part and Inventory Search

Back
Top