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

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

[Octave-bug-tracker] [bug #56917] textscan does not remove quotation mar


From: anonymous
Subject: [Octave-bug-tracker] [bug #56917] textscan does not remove quotation mark when conversion specifier is %q
Date: Tue, 17 Sep 2019 16:47:45 -0400 (EDT)
User-agent: Mozilla/5.0 (Windows NT 5.1; rv:52.0) Gecko/20100101 Firefox/52.0

URL:
  <https://savannah.gnu.org/bugs/?56917>

                 Summary: textscan does not remove quotation mark when
conversion specifier is %q
                 Project: GNU Octave
            Submitted by: None
            Submitted on: Tue 17 Sep 2019 08:47:43 PM UTC
                Category: Octave Function
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Incorrect Result
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: 4.4.0
        Operating System: Microsoft Windows

    _______________________________________________________

Details:

In the following example, textscan does not remove one of the closing
quotation marks:


>> textscan('"a,a","a"','%q','Delimiter',',')
ans =
{
  [1,1] =
  {
    [1,1] = a,a
    [2,1] = a"
  }

}


The value of the output should have been:


{
  [1,1] =
  {
    [1,1] = a,a
    [2,1] = a
  }

}





    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?56917>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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