Help for this page

Select Code to Download


  1. or download this
    my @out = split(\s(AND|OR)\s/i,$string);
    
  2. or download this
    my @out = split(/\s(AND|OR)\s/i,$string);
    
  3. or download this
    #!/usr/bin/perl -wT
    use strict;
    ...
    =OUTPUT
    S:something and something else or this thing here
    N:tools.description LIKE "%something%" AND tools.description LIKE "%so
    +mething else%" OR tools.description LIKE "%this thing here%"