Help for this page

Select Code to Download


  1. or download this
    my $text = "to { (This Word) }";
    my $remove = "{ (This Word) }";
    
    ...
    $text =~ s/$remove//;
    print $remove, $/, $/;
    print $text;
    
  2. or download this
    { (This Word) }
    
    to { (This Word) }