Help for this page

Select Code to Download


  1. or download this
    $search-> {Text} = $oldtext;
    $replace-> {Text} = $newtext;
    $search-> Execute({Replace => wdReplaceAll});
    
  2. or download this
    $search-> {Text} = "\x{0021}";
    $replace-> {Text} ="\x{0022}";
    $exec_res = $search-> Execute({Replace => wdReplaceAll});
    
  3. or download this
    $search-> {Text} =  "\x{270F}";
    $replace-> {Text} = "\x{2702}";
    
  4. or download this
    $search-> {Text} = 'U' . "\x{270F}";
    $replace-> {Text} ='U' . "\x{2702}";