bryanfl100
Technical User
The script below is just a small section of the script but what I wanted was to know is how to make the /Dell/; also equal to other values such as /Dell|Optiplex/; and /Dell|Dimensions/; etc:
<script>
function look_$data[computer.id](s){
var regex = /Dell/;
if (regex.test(s)) {
var look = 1;
} else {
var look = 0;
}
<script>
function look_$data[computer.id](s){
var regex = /Dell/;
if (regex.test(s)) {
var look = 1;
} else {
var look = 0;
}