[13569] in Perl-Users-Digest

home help back first fref pref prev next nref lref last post

Perl-Users Digest, Issue: 979 Volume: 9

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Sun Oct 3 22:07:16 1999

Date: Sun, 3 Oct 1999 19:05:06 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Message-Id: <939002706-v9-i979@ruby.oce.orst.edu>
Content-Type: text

Perl-Users Digest           Sun, 3 Oct 1999     Volume: 9 Number: 979

Today's topics:
    Re: (-d $filename) test (Vasile Calmatui)
    Re: CGI testing on a Win95 machine (Marc)
    Re: CGI.pm <msm@manley.org>
    Re: compile modules? vishalb@my-deja.com
        DBD and DBI install question mr_potato_head@my-deja.com
        Error log in Activsate? (Burt lewis)
        HELP with telephone number checker/editor <lnewsome@best.com>
    Re: HELP with telephone number checker/editor <rootbeer@redcat.com>
    Re: HELP with telephone number checker/editor <flavell@mail.cern.ch>
        locale. (windows) <mortuno@iname.com>
    Re: Need help with perl CGI <msm@manley.org>
        News graber ardit@my-deja.com
    Re: News graber (Mark A. Hershberger)
    Re: Passing arguments to PERL script via URL (Abigail)
    Re: Ples Hep Me!  adding users to mysql is impossible! (Arthur Corliss)
        Regex - Nesting <marc@infinityinternet.com>
    Re: Regex - Nesting <rootbeer@redcat.com>
    Re: Regex - Nesting (Abigail)
        Round to dec. place: sprintf and printf? aaron@preation.com
    Re: Round to dec. place: sprintf and printf? <sjs@yorku.ca>
        Schnelle Bearbeitung von HTML-Seiten <chw@firemail.de>
    Re: Values of thousand <mike@crusaders.no>
        Digest Administrivia (Last modified: 16 Sep 99) (Perl-Users-Digest Admin)

----------------------------------------------------------------------

Date: Sun, 03 Oct 1999 22:27:39 GMT
From: vasile@club-internet.fr (Vasile Calmatui)
Subject: Re: (-d $filename) test
Message-Id: <37f7d782.49188610@news.club-internet.fr>

>:>> >Ack!  Don't *DO* that.  Win32 can understand paths separated by '/' just
>:>> >as well.
>:>> 
>:>> You mean Win32 Perl "understand ...", isn't it ?
>:>
>:>No.  It means the Windows/DOS file systems understand ...
>:
>:I'm afraid it's not true...
>
>Yes, it is.
>
>:  C:\>dir temp/
>:  Commutateur non valide - /
>
>
>That's not a program.  It's a shell built-in.  It is the shell
>that is broken.  It parses / differently.  The kernel isn't
>so stupid.
>:And you think that if you make in C an fopen("c:/temp/foo.txt")
>:it'll work ?
>:
>:I doubt...
>
>Do not doubt.  Test it.  You'll find it works.  (Although your fopen()
>call is missing an arg and a return value).

OK, you are COMPLETELY right: Win32 system understands '/' as
pathname, on Win95, Win98 and WinNT.

I tested it with the code supplied at the end of this message.

Thanks for correction,
bye

--------------------------------
C code
--------------------------------
#include <stdio.h>
main (int argc, char **argv) {
  FILE *fd=0;
  char *filename="c:/temp/foo.txt";
  if ((fd = fopen (filename, "r")) == NULL) {
    printf("  Error: cannot read file %s\n", filename);
  }/* if */
  else {
    char line[512];
    fgets (line, 511, fd);
    printf("In the file '%s' I got the line '%s'.\n", filename, line);
  }/* else */
}/* main */
--------------------------------

--
Vasile Calmatui
vasile@club-internet.fr
http://www.chez.com/vasile/


------------------------------

Date: Sun, 03 Oct 1999 22:05:58 GMT
From: puma@mailandnews.com (Marc)
Subject: Re: CGI testing on a Win95 machine
Message-Id: <7t6fbo.3vseplj.0@pumamarcmailandnews.hD9ABA399.invalid>

Bill Moseley wrote in <MPG.125fc70cd795095b9897bd@206.184.139.132>:

>Sure, and this is really good advice:  Run the program and look at what 
>it outputs.
>

    	Thanks, will try that.

Marc


------------------------------

Date: Sun, 3 Oct 1999 14:13:49 -0500
From: "Michael S. Manley" <msm@manley.org>
Subject: Re: CGI.pm
Message-Id: <7t8a0v$2eu$1@eve.enteract.com>

>somebody pooting all over c.l.p.m.  :-)


Like anyone would notice.

  MSM




------------------------------

Date: Mon, 04 Oct 1999 00:08:54 GMT
From: vishalb@my-deja.com
Subject: Re: compile modules?
Message-Id: <7t8r6i$1fk$1@nnrp1.deja.com>



> If any one can help  What is the best way to compile a perl script
that calls
> modules?
>

Just compile the script that includes the module.
Do not try to compile the modules themselves.
If you have a script
myscript.pl which contains
use Socket;
 ...

just compile mysocket.pl and the code for the Socket.pm module will
be included into the compioled executable. If Socket module has a
shared lib, the compiled execuutable will be linked against it.

regards,
Vishal


If it compiles but doesnot work correctly, check deja-news/p5p archives
etc for the status of the compiler.

cheers,
vishal


Sent via Deja.com http://www.deja.com/
Before you buy.


------------------------------

Date: Sun, 03 Oct 1999 20:00:04 GMT
From: mr_potato_head@my-deja.com
Subject: DBD and DBI install question
Message-Id: <7t8ck0$ofi$1@nnrp1.deja.com>

Hi,
   I'm installing DBI and DBD on my system and I'm running into install
problems.  I want to install these into my /usr/local directory but
this directory is automounted to my NFS server.  If I try to install
these modules to my NFS server, it doesn't have Informix.  So I decided
to install these modules to a machine that does have Informix 7.23 UC9
on it.  I'm trying to install everything into /u/local and then I was
going to copy all the files to the NFS server so I can use the DBI and
DBD from other machines.  I was successful in installing the DBI module
in the /u/local directory and copying it over to my NFS server so now I
can see it in /usr/local.  But when I try to setup DBD I get errors.
To make it simple I just left DBD in the directory /u/DBD and ran "perl
Makefile.PL".  Then I ran "make", and then "make test" and got the
following:

n30# make test
PERL_DL_NONLAZY=1 /usr/local/bin/perl -Iblib/arch -Iblib/lib -
I/usr/local/lib/perl5/5.00502/sun4-solaris -I/usr/local/lib/perl5/5.00
502 -e 'use Test::Harness qw(&runtests $verbose); $verbose=0; runtests
@ARGV;' t/*.t
t/t00basic..........DBI->connect failed: SQL: -329: Database not found
or no system permission.
ISAM: -111: ISAM error:  no record found.
 at blib/lib/DBD/InformixTest.pm line 74
!! Terminating Test !!

There is much more but I think you can get the point.  Normally I will
change the Makefile before I do a "make" so as to have the module
install into the directory I want it to be in, but since that didn't
work either, I thought I'd try the defaults.  Can anyone show me the
syntax for installing these modules to my /u/local directory?  And
correct me if i'm wrong, but I should be able to just move these files
to my NFS server's /usr/local directory and use them.  I'm running
solaris 2.6 on an ultra 1 with perl 5.005.02 and DBI 1.13 and DBD .60.
Thanks in advance...


Sent via Deja.com http://www.deja.com/
Before you buy.


------------------------------

Date: Sun, 03 Oct 1999 23:02:37 GMT
From: burt@ici.net (Burt lewis)
Subject: Error log in Activsate?
Message-Id: <hgRJ3.2635$z5.42858@ndnws01.ne.mediaone.net>

Hi,

I can't seem to locate an error log. Is there one?

Thanks!

Burt Lewis



------------------------------

Date: Sun, 03 Oct 1999 12:56:02 -0700
From: Leigh Newsome <lnewsome@best.com>
Subject: HELP with telephone number checker/editor
Message-Id: <37F7B4D1.2F103DE5@best.com>

I need help with a script that would modify the users telephone number
on my guestbook (it goes to a database)...

I need it so at ALL times the phone numbers are sent to the database in
this format:
(555)555-5555.

Some users type in 1-555- 555- 5555,or other wierd variations.  I need
it to ALWAYS send the data in the format (555)555-5555  to the
database.  Can someone please help me?????

Leigh
Lnewsome@best.com





------------------------------

Date: Sun, 3 Oct 1999 13:47:08 -0700
From: Tom Phoenix <rootbeer@redcat.com>
Subject: Re: HELP with telephone number checker/editor
Message-Id: <Pine.GSO.4.10.9910031342190.19155-100000@user2.teleport.com>

On Sun, 3 Oct 1999, Leigh Newsome wrote:

> I need it so at ALL times the phone numbers are sent to the database in
> this format:
> (555)555-5555.

What do you do with telephone numbers with extensions, with only
extensions, or ones which aren't for merely the US and Canada? But maybe
you want something like this.

    sub phone_format ($) {
	local $_ = shift;
	tr/0-9//cd;
	return unless s/(\d\d\d)(\d\d\d)(\d\d\d\d)/($1)$2-$3./;
	$_;
    }

Cheers!

-- 
Tom Phoenix       Perl Training and Hacking       Esperanto
Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/



------------------------------

Date: Sun, 3 Oct 1999 23:28:59 +0200
From: "Alan J. Flavell" <flavell@mail.cern.ch>
Subject: Re: HELP with telephone number checker/editor
Message-Id: <Pine.HPP.3.95a.991003232611.14141B-100000@hpplus01.cern.ch>

On Sun, 3 Oct 1999, Leigh Newsome wrote:

> I need it so at ALL times the phone numbers are sent to the database in
> this format:
> (555)555-5555.

What you going to do with mine, +44 141 330 xxxx ?

There's an old telephone joke about USAns being the only advanced
society that is incapable of dialling an international telephone number. 
I'm beginning to think there's a grain of truth in it. 




------------------------------

Date: Sun, 03 Oct 1999 23:43:27 +0200
From: Miguel Ortu~o <mortuno@iname.com>
Subject: locale. (windows)
Message-Id: <37F7CDFF.1345CC24@iname.com>

Hello everybody

I'm trying to set "locale" to spanish. (Spain, but suppose doesn't 
matter). I'm running the binary distribution of Perl for the Win32
platform
 5.004_02.

"man perllocale" doesn't talk much about windows. I try the example:
(foo.pl):

          # This functionality not usable prior to Perl 5.004
          require 5.004;
 
          # Import locale-handling tool set from POSIX module.
          # This example uses: setlocale -- the function call
          #                    LC_CTYPE -- explained below
          use POSIX qw(locale_h);
 
          # query and save the old locale
          $old_locale = setlocale(LC_CTYPE);
 
          setlocale(LC_CTYPE, "fr_CA.ISO8859-1");
          # LC_CTYPE now in locale "French, Canada, codeset ISO 8859-1"
 
          setlocale(LC_CTYPE, "");
          # LC_CTYPE now reset to default defined by
LC_ALL/LC_CTYPE/LANG
          # environment variables.  See below for documentation.
 
          # restore the old locale
          setlocale(LC_CTYPE, $old_locale);



And I get:
Can't locate POSIX.pm in @INC 
(@INC contains: E:\PERL\lib\site E:\PERL\lib c:\perl\lib
c:\perl\lib\site 
c:\perl\lib\site .) at foo.pl line 7.
BEGIN failed--compilation aborted at foo.pl line 7.


Should I compile perl in my system?
I'm afraid it won't help, 
Borland C++ help (Builder 3) says:
 "The only locale supported in Borland C++ is "C"  "


And If I could fix it, what should I change in the exaple?
perhaps...
         setlocale(LC_CTYPE, "sp_SP.ISO8859-1");



Thanks in advance

Miguel Ortuño


------------------------------

Date: Sun, 3 Oct 1999 14:39:20 -0500
From: "Michael S. Manley" <msm@manley.org>
Subject: Re: Need help with perl CGI
Message-Id: <7t8bgq$3kf$1@eve.enteract.com>

>I'm currently working on an advanced website that requires CGI scripts to
>manage extensive customer databases.


One might surmise that such an endeavor would involve the exchange of money
for services. One would also question the phrases "advanced webiste" and
"requires CGI" in such close proximity as to imply a relationship between
the two concepts, but that's a completely inappropriate debate for this
forum.

Perhaps you would be better served advertising in a local jobs posting
group. Speaking only for myself, I have enough work as it is without
donating my skills to other commercial entities, and I prefer any "Thank
You" I receive to help pay my rent.

  MSM




------------------------------

Date: Sun, 03 Oct 1999 20:13:37 GMT
From: ardit@my-deja.com
Subject: News graber
Message-Id: <7t8ddb$otk$1@nnrp1.deja.com>

Hi friends,
I have a perl script that grabs headlines only
from the LinuxToday page,
but I want to use this script to retrieve
headlines from Slashdot and LinuxToday at the
same time, and have them in one page, do I need
any special code to get this done.

Can anyone help?

Thank you

Frank


Sent via Deja.com http://www.deja.com/
Before you buy.


------------------------------

Date: 03 Oct 1999 19:06:34 -0500
From: mah@everybody.org (Mark A. Hershberger)
Subject: Re: News graber
Message-Id: <49aeq0kn05.fsf@playpen.baileylink.net>

ardit@my-deja.com writes:

> I have a perl script that grabs headlines only
> from the LinuxToday page,
> but I want to use this script to retrieve
> headlines from Slashdot and LinuxToday at the
> same time, and have them in one page, do I need
> any special code to get this done.

You want to parse RSS files.  Get XML::RSS.  Go poke around a site
like http://my.userland.com/ and fetch some RSS files.  They have
plenty of news sites and pointers to RSS files.

Mark.


------------------------------

Date: 3 Oct 1999 14:58:53 -0500
From: abigail@delanet.com (Abigail)
Subject: Re: Passing arguments to PERL script via URL
Message-Id: <slrn7vfdro.ca4.abigail@alexandra.delanet.com>

Charles Cuccaro (bacjc@worldnet.att.net) wrote on MMCCXXIV September
MCMXCIII in <URL:news:01bf0db2$f49af900$13644e0c@bacjc>:
?? Hello, I'm trying to pass arguments into a PERL script via a URL.
?? 
?? First off, is it even possible for a PERL script to receive arguments from
?? a URL?
?? example: http://www.thedomainname.com/test.cgi?name="Bob"&id="1234"

Uhm, not directly. But things like that are used when connecting to
HTTP servers, who in turn might use CGI to call external programs.

As such, your question has nothing to do with Perl. Go ask in a newsgroup
dealing with CGI.


And it's spelled Perl. Not PERL.



Abigail
-- 
perl -e '* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
         / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / 
         % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %;
         BEGIN {% % = ($ _ = " " => print "Just Another Perl Hacker\n")}'


  -----------== Posted via Newsfeeds.Com, Uncensored Usenet News ==----------
   http://www.newsfeeds.com       The Largest Usenet Servers in the World!
------== Over 73,000 Newsgroups - Including  Dedicated  Binaries Servers ==-----


------------------------------

Date: 3 Oct 1999 13:33:43 -0900
From: corliss@loki.asgard.org (Arthur Corliss)
Subject: Re: Ples Hep Me!  adding users to mysql is impossible!
Message-Id: <slrn7vfj93.3f0.corliss@loki.asgard.org>

On Sat, 02 Oct 1999 08:55:26 GMT, Jeff Greer <jgreer@showmethenet.com> wrote:
>I thought making perl connect to mysql through DBI was hard to set up, but that
>is nothing compared to adding a new user to mysql.  I set up Apache, DBI, Perl,
>and DBD::mysql.  I can send and retrieve values to my database from web pages
>that call perl scripts, but I can't add a new user to mysql.  I can only access
>the database as root.

It's actually a hell of a lot easier than you think, once you know how.
Here's a few tips, though:

	1)  After adding a new user, remember to 'flush privileges' for the
	    permissions to take effect.
	2)  For good security, set up the user in the user table with no
	    permissions, then set up the same user for the database you want
	    him/her to have access to in the db table.

>Can anybody please explain the steps in adding a new user to mysql.  I'll never
>figure this out from the manual.  In all respects I think the mysql manual is
>pretty good except in the area of users and access privileges.

Adding a user is done through queries, and can be done via the mysql shell or
Perl DBI.  For instance:

INSERT INTO user (host, user, password)
values("localhost", "someone", password("some password"))

INSERT INTO db (host, db, user, select_priv, insert_priv, update_priv,
delete_priv)
values("localhost", "test_db", "someone", "Y", "Y", "Y", "Y")

Finally:

flush privileges

and that's it.

>I've tried everything I could that was listed in the mysql official manual to
>create user: test with pw: test**   but I cannot do it.  I keep getting this
>error:
>
>/root > mysql -h localhost -u test -ptest**
>ERROR 1045: Access denied for user: 'test@localhost' (Using password: YES)
>
>thanks
>--
>Jeff Greer
>B.S. computer science, University of MO - Rolla
>--------------------------------------------------
>Windows NT has crashed,
>I am the Blue Screen of Death,
>No one hears your screams...
>
>If you don't have anything mean to say about 
>Microsoft, don't say anything at all.


-- 

	--Arthur Corliss
	  Bolverk's Lair -- http://www.odinicfoundation.org/arthur/
	  "Live Free or Die, the Only Way to Live" -- NH State Motto


------------------------------

Date: Sun, 03 Oct 1999 19:46:23 GMT
From: "Marc" <marc@infinityinternet.com>
Subject: Regex - Nesting
Message-Id: <joOJ3.2282$_b3.50091@typhoon.southeast.rr.com>

Hey,

I currently have a template subroutine that parses if commands, ie:

<%if variable eq "Yes"> html if true <%endif%>

My regex command is like this:

  $text =~ s{ $begin \s* if \s* (\w*)? \s* (..) \s* "([\w\s]*)?" $end (.*)?
$begin \s* endif \s* $end}


              ($2 eq 'eq' && $fillings->{$1} eq $3) ||
              ($2 eq 'ne' && $fillings->{$1} ne $3) ||
              ($2 eq '<=' && $fillings->{$1} <= $3) ||
              ($2 eq '>=' && $fillings->{$1} >= $3) ?
                "$4" :
                ""     ;
            }gsex;

Now how could I have nested 'if's? Like the following

<%if var eq "Yes"%><%if var2 eq "Yes"%><%if var3 eq "Yes%>html if all are
true<%endif%><%endif%><%endif%>

Any ideas? Thanks...




------------------------------

Date: Sun, 3 Oct 1999 13:41:47 -0700
From: Tom Phoenix <rootbeer@redcat.com>
Subject: Re: Regex - Nesting
Message-Id: <Pine.GSO.4.10.9910031340000.19155-100000@user2.teleport.com>

On Sun, 3 Oct 1999, Marc wrote:

> I currently have a template subroutine that parses if commands, ie:
> 
> <%if variable eq "Yes"> html if true <%endif%>

> Now how could I have nested 'if's? 

Perhaps by recoding to truly parse the text, maybe with the help of a
module like Parse::RecDescent from CPAN. Cheers!

-- 
Tom Phoenix       Perl Training and Hacking       Esperanto
Randal Schwartz Case:     http://www.rahul.net/jeffrey/ovs/



------------------------------

Date: 3 Oct 1999 17:04:44 -0500
From: abigail@delanet.com (Abigail)
Subject: Re: Regex - Nesting
Message-Id: <slrn7vfl7o.ca4.abigail@alexandra.delanet.com>

Marc (marc@infinityinternet.com) wrote on MMCCXXIV September MCMXCIII in
<URL:news:joOJ3.2282$_b3.50091@typhoon.southeast.rr.com>:
() 
() 
() Now how could I have nested 'if's?

use Parse::RecDescent;



Abigail
-- 
perl -wleprint -eqq-@{[ -eqw+ -eJust -eanother -ePerl -eHacker -e+]}-


  -----------== Posted via Newsfeeds.Com, Uncensored Usenet News ==----------
   http://www.newsfeeds.com       The Largest Usenet Servers in the World!
------== Over 73,000 Newsgroups - Including  Dedicated  Binaries Servers ==-----


------------------------------

Date: Sun, 03 Oct 1999 23:24:04 GMT
From: aaron@preation.com
Subject: Round to dec. place: sprintf and printf?
Message-Id: <7t8oie$vne$1@nnrp1.deja.com>


>You might read the first entry in perlfaq4: "Why am I getting long
>decimals (eg, 19.9499999999999) instead of the numbers I should
>be getting (eg, 19.95)?"

After reading this review I did as advised and checked in the Perlfaq4.
I found a explanation saying that I should use sprintf or printf. I
don't have a list of arguments that I can use with each of these at my
disposal. I was wondering if someone knows how I should go about
rounding a number like 100.4999999999 or 52.38383838383838 off to a
whole number with 0 decimal places, or what about 1 decimal place or
two?

In addition I have two questions regarding verification of FORM
INPUT. What is the best way to strip HTML out of a string that is
submitted by a form user? And, what is the best way to remove possibly
"hacking" or "malicious" type symbols from a string that is submitted by
a form user?

Thanks, Aaron H.



Sent via Deja.com http://www.deja.com/
Before you buy.


------------------------------

Date: 03 Oct 1999 19:43:46 -0500
From: Steven Smolinski <sjs@yorku.ca>
Subject: Re: Round to dec. place: sprintf and printf?
Message-Id: <m3g0zsrm4d.fsf@hank.yorku.ca>

aaron@preation.com writes:

> I found a explanation saying that I should use sprintf or printf. I
> don't have a list of arguments that I can use with each of these at my
> disposal. I was wondering if someone knows how I should go about
> rounding a number like 100.4999999999 or 52.38383838383838 off to a
> whole number with 0 decimal places, or what about 1 decimal place or
> two?

You have the function names printf and sprintf; you have the perldoc;
you don't need the newsgroup.

% perldoc -f sprintf

=item sprintf FORMAT, LIST

Returns a string formatted by the usual C<printf()> conventions of the
C library function C<sprintf()>.  See L<sprintf(3)> or L<printf(3)>
on your system for an explanation of the general principles.

Perl does its own C<sprintf()> formatting -- it emulates the C
function C<sprintf()>, but it doesn't use it (except for floating-point
numbers, and even then only the standard modifiers are allowed).  As a
result, any non-standard extensions in your local C<sprintf()> are not
available from Perl.

Perl's C<sprintf()> permits the following universally-known conversions:

   %%	a percent sign
   %c	a character with the given number
   %s	a string
   %d	a signed integer, in decimal
   %u	an unsigned integer, in decimal
   %o	an unsigned integer, in octal
   %x	an unsigned integer, in hexadecimal
   %e	a floating-point number, in scientific notation
   %f	a floating-point number, in fixed decimal notation
   %g	a floating-point number, in %e or %f notation

In addition, Perl permits the following widely-supported conversions:

   %X	like %x, but using upper-case letters
   %E	like %e, but using an upper-case "E"
   %G	like %g, but with an upper-case "E" (if applicable)
   %p	a pointer (outputs the Perl value's address in hexadecimal)
   %n	special: *stores* the number of characters output so far
        into the next variable in the parameter list 

Finally, for backward (and we do mean "backward") compatibility, Perl
permits these unnecessary but widely-supported conversions:

   %i	a synonym for %d
   %D	a synonym for %ld
   %U	a synonym for %lu
   %O	a synonym for %lo
   %F	a synonym for %f

Perl permits the following universally-known flags between the C<%>
and the conversion letter:

   space   prefix positive number with a space
   +       prefix positive number with a plus sign
   -       left-justify within the field
   0       use zeros, not spaces, to right-justify
   #       prefix non-zero octal with "0", non-zero hex with "0x"
   number  minimum field width
   .number "precision": digits after decimal point for
           floating-point, max length for string, minimum length
           for integer
   l       interpret integer as C type "long" or "unsigned long"
   h       interpret integer as C type "short" or "unsigned short"

There is also one Perl-specific flag:

   V       interpret integer as Perl's standard integer type

Where a number would appear in the flags, an asterisk ("C<*>") may be
used instead, in which case Perl uses the next item in the parameter
list as the given number (that is, as the field width or precision).
If a field width obtained through "C<*>" is negative, it has the same
effect as the "C<->" flag: left-justification.

If C<use locale> is in effect, the character used for the decimal
point in formatted real numbers is affected by the LC_NUMERIC locale.
See L<perllocale>.



------------------------------

Date: Sun, 03 Oct 1999 21:22:07 +0200
From: Christian Weerts <chw@firemail.de>
Subject: Schnelle Bearbeitung von HTML-Seiten
Message-Id: <37F7ACDF.5F82539F@firemail.de>

Hallo

ich suche nach einer möglichkeit, in mehreren html-seiten gleichzeitig eine(n) bestimmte

Änderung / Link einzufügen. Gibt es da unter perl eine möglichkeit?

--
 ...tschau
        Christian                                       chw@firemail.de

--





------------------------------

Date: Sun, 3 Oct 1999 23:14:49 +0200
From: "Trond Michelsen" <mike@crusaders.no>
Subject: Re: Values of thousand
Message-Id: <fDPJ3.2457$Tm3.7679@news1.online.no>


Jonathan Stowe <gellyfish@gellyfish.com> wrote in message
news:7t7tfv$92d$1@gellyfish.btinternet.com...
> > --
> > Trond Michelsen
> That extra space after the two dashes really is important to most
newsreaders.

I know, and I always put it in there. However, for some reason I'm using
Outlook Express (I don't know why, actually. I really don't like the
program), and OE is so kind that it removes the trailing space before it
posts the message.

Yes, I *will* change newsreader real-soon-now

--
Trond Michelsen





------------------------------

Date: 16 Sep 99 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin) 
Subject: Digest Administrivia (Last modified: 16 Sep 99)
Message-Id: <null>


Administrivia:

The Perl-Users Digest is a retransmission of the USENET newsgroup
comp.lang.perl.misc.  For subscription or unsubscription requests, send
the single line:

	subscribe perl-users
or:
	unsubscribe perl-users

to almanac@ruby.oce.orst.edu.  

| NOTE: The mail to news gateway, and thus the ability to submit articles
| through this service to the newsgroup, has been removed. I do not have
| time to individually vet each article to make sure that someone isn't
| abusing the service, and I no longer have any desire to waste my time
| dealing with the campus admins when some fool complains to them about an
| article that has come through the gateway instead of complaining
| to the source.

To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.

To request back copies (available for a week or so), send your request
to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
where x is the volume number and y is the issue number.

For other requests pertaining to the digest, send mail to
perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
sending perl questions to the -request address, I don't have time to
answer them even if I did know the answer.


------------------------------
End of Perl-Users Digest V9 Issue 979
*************************************


home help back first fref pref prev next nref lref last post