octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #49451] matching beginning/end of a word does


From: Rik
Subject: [Octave-bug-tracker] [bug #49451] matching beginning/end of a word does not work
Date: Thu, 27 Oct 2016 16:12:25 +0000 (UTC)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0

Update of bug #49451 (project octave):

                  Status:                    None => Confirmed              

    _______________________________________________________

Follow-up Comment #2:

As a temporary workaround, use single quotes to avoid interpretation of escape
sequences by the Octave interpreter.  This also tends to make the patterns
more readable which is why I always do this.


regexprep("_   aaaa   _", '\<\w{4}', "b")
ans = _   b   _


The issue is likely to be that double quoted strings are being run through
do_string_escapes twice.  First, by the Octave interpreter and then a second
time by regexprep.


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?49451>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]