Help for this page

Select Code to Download


  1. or download this
    -c:'field_1=value_1','field_2>value_2'
    
  2. or download this
    -c 'field_1=value_1' -c 'field_2>value_2'
    
  3. or download this
    use Getopt::Long;
    our @opt_c;
    GetOptions("c=s@");
    print join ", ", @opt_c;
    
  4. or download this
    /^(.*?)([<=>])(.*)/