You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@systemml.apache.org by "Deron Eriksson (JIRA)" <ji...@apache.org> on 2016/07/08 01:11:11 UTC

[jira] [Created] (SYSTEMML-778) Parser not handle escaped quotes correctly

Deron Eriksson created SYSTEMML-778:
---------------------------------------

             Summary: Parser not handle escaped quotes correctly
                 Key: SYSTEMML-778
                 URL: https://issues.apache.org/jira/browse/SYSTEMML-778
             Project: SystemML
          Issue Type: Bug
          Components: Parser
            Reporter: Deron Eriksson
            Assignee: Deron Eriksson
            Priority: Minor


The following DML
{code}
print('this is a string');
print("deron's string");
print('"deron" string');
print('"deron\'s" string');
print("\"fred's\" string");
print("\"mike\'s\" string");
{code}
should produce:
{code}
this is a string
deron's string
"deron" string
"deron's" string
"fred's" string
"mike's" string
{code}

However, it produces:
{code}
this is a string
deron's string
"deron" string
"deron\'s" string
\"fred's\" string
\"mike\'s\" string
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)