CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: abcdef1

Search: Search took 0.02 seconds.

  1. Replies
    0
    Views
    971

    Perl turn on debug mode

    In below perl code , how can I turn on debug for sendSMTP ??
    Any idea ???What is the sue of var $debug ???


    #!/usr/bin/perl -w

    use Socket;
    use strict;

    my($mailTo) =...
  2. Replies
    0
    Views
    541

    perl code question

    Hi,

    I have below code :


    my($abc) = "fred<hello>3hello";
    $abc =~ /^[^\d]{2,4}<([^>]+)>\d?\1$/;

    if (defined($1)) {
    print "$1\n";
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured