Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix -w behaviour and docs (<https://github.com/petdance/ack2/issues/445>) #558

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions ack
Original file line number Diff line number Diff line change
Expand Up @@ -316,11 +316,9 @@ sub build_regex {

$str = quotemeta( $str ) if $opt->{Q};
if ( $opt->{w} ) {
my $pristine_str = $str;

$str = "(?:$str)";
$str = "\\b$str" if $pristine_str =~ /^\w/;
$str = "$str\\b" if $pristine_str =~ /\w$/;
$str = "(?:\\b|(?!\\w))$str";
$str = "$str(?:\\b|(?<!\\w))";
}

my $regex_is_lc = $str eq lc $str;
Expand Down Expand Up @@ -1539,8 +1537,10 @@ Display version and copyright information.

=item B<-w>, B<--word-regexp>

Force PATTERN to match only whole words. The PATTERN is wrapped with
C<\b> metacharacters.
Match a whole word only. In more detail: if the match begins with a
word character, then there must not be a word character immediately
before the match. If the match ends with a word character, there must
not be a word character immediately after the match.

=item B<-x>

Expand Down