NetXMS Support Forum

English Support => General Support => Topic started by: nannard on November 12, 2019, 11:29:57 AM

Title: Netxms script filter for template
Post by: nannard on November 12, 2019, 11:29:57 AM
Hi guys,

Im trying find a script for tidy my computers in my Template.

i tried a script but it doesnt work with template so i need help
i would like a script to say " if the name of the pc or printer start with CAB or cab you have to put it in this your template "

By the way sorry for my english, im french and its a bit difficult thanks in advance.
Title: Re: Netxms script filter for template
Post by: Victor Kirhenshtein on November 12, 2019, 11:34:46 AM
Hi,

you can try this script:


p = substr($node->name, 1, 3);
return (p == "cab") || (p == "CAB");


This will add nodes with names starting with CAB or cab (but not Cab or caB). If case is actually not important at all you can use simply


return $node->name ilike "CAB*";


Best regards,
Victor
Title: Re: Netxms script filter for template
Post by: nannard on November 12, 2019, 12:42:12 PM
Hi Viktor,

i tried your script but nothing happened.

but how can i do for the ' pc-cab goes to template 'CAB' with a script
the script will be different no ?
sorry im so newbie about this ...
Title: Re: Netxms script filter for template
Post by: Victor Kirhenshtein on November 12, 2019, 02:52:16 PM
Hi,

problem is that name of those nodes does not starts with "cab", it is in the middle. If you want to match any node that contains cab it will be different:


return $node->name imatch ".*cab.*";


This will match any name with letter combination cab at any position using regular expression. If you want something more complex you can use more complex regular expression. Site https://regex101.com/ (https://regex101.com/) is a good resource for testing your expressions.

Best regards,
Victor