Help for this page

Select Code to Download


  1. or download this
    (?:(?<=\w)(?=\W|\z)|(?:(?<=\W)|(?<=\A))(?=\w)
    
  2. or download this
    (?:(?<!\w)(?=\w)|(?<=\w)(?!\w))
    
  3. or download this
    (?:(?<![\w/-])(?=[\w/-])|(?<=[\w/-])(?![\w/-]))
    
  4. or download this
    my $w = '\w/-';
    my $b = "(?:(?<![$w])(?=[$w])|(?<=[$w])(?![$w]))";
    my @words = ($rec =~ /${b}[$w]+${b}/g);