Help for this page

Select Code to Download


  1. or download this
    my $repl = '//div[@id="abc"]';
    
    s/.../$repl/
    
  2. or download this
    s{...}{ q{//div[@id="abc"]} }e
    
  3. or download this
    s{...}{ '//div[@id="abc"]' }e
    
  4. or download this
    s{...}'//div[@id="abc"]'