http://d.puremagic.com/issues/show_bug.cgi?id=9812
Summary: std.conv.parse string fails on certain escape
characters.
Product: D
Version: unspecified
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: Phobos
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from [email protected] 2013-03-25 07:31:02 PDT ---
Specifically:
\0
\'
\"
\?
\\
For example:
void main()
{
string s = `["C:\\FolderA", "D:\\FolderB"]`;
parse!(string[])(s); //Can't parse string: Unknown escape character \
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------