Re: Running process in background?

2003-07-20 Thread Kevin Pfeiffer
In article [EMAIL PROTECTED], Octavian Rasnita wrote: Can you tell me how to define a cron job that is executed each hour? Thank you. 10 0-23 * * * echo run 10 minutes after the hour, every hour, everyday man 5 crontab -- Kevin Pfeiffer International University Bremen -- To

HTTP_ACCEPT_LANGUAGE

2003-07-20 Thread Octavian Rasnita
Hi all, I've seen the following string sent by Internet Explorer for the HTTP_ACCEPT_LANGUAGE environment variable. Can you explain or point me to an explanation about what does it mean that q=... and how are those values defined? I've set more languages in the browser in the following order:

Regex problem

2003-07-20 Thread Sara
$name = SARA DEILEY; how its possible to grasp only initials for First and Last name i.e $name =SD?? thanks.

Re: Regex problem

2003-07-20 Thread Wiggins d'Anconia
Sara wrote: $name = SARA DEILEY; how its possible to grasp only initials for First and Last name i.e $name =SD?? Depends on how standardized your data is, something simple like this should work for the above: my $name = 'SARA DEILEY'; my $initials; if ($name =~ /^(\w)\w*\s+(\w)\w*/) {

RE: Regex problem

2003-07-20 Thread Scot Robnett
This is similar to Wiggins, except it checks to make sure that A. We have a two word sequence B. We don't have a comma These are still very basic levels of processing, though - Wiggins is right that we would need to see a more thorough example of data ranges to know exactly what