in reply to Re^2: Help with script recognizing variable in string
in thread Help with script recognizing variable in string

loving perl more and more!

in that case use some more and make it easier to see the query

use strict; use URI::Escape; my $values = join ', ',( 'names of it', 'ip addresses of it', 'root server of it', 'operating systems of it', 'last report time of it', 'agent versions of it', 'values of results from (BES Property "_SupportGroup") of it' ); my $bfcomputer = 'ABC123'; my $who = 'name of it as lowercase starts with "'.$bfcomputer.'"'; my $relevance = "($values) of bes computers whose ( $who)"; my $bfquery = 'query?relevance='.uri_escape($relevance);
poj

Replies are listed 'Best First'.
Re^4: Help with script recognizing variable in string
by TonyNY (Beadle) on Jun 20, 2018 at 20:29 UTC

    Ahhhh Master poj,

    I am yet a young padawan and have much to learn, but seriously I am getting a whole slew of errors. I'll have to post them and the contents of my script when i get a chance.

    Thanks...