Re: Escape a string ?

2015-04-09 Thread Temtaime via Digitalmars-d-learn
Sorry, i meant it gives b == "fooo\\nbar" I'm writing an interpreter and it should dump original string from memory. Also i wonder if there's a function to convert "aaa\\nbb" to "aaa\nbb" (i.e. to unescape)

Re: Escape a string ?

2015-04-09 Thread tcak via Digitalmars-d-learn
On Thursday, 9 April 2015 at 13:09:57 UTC, Temtaime wrote: Hi ! I wonder how to escape a string in phobos ? For example auto a = [ "fooo\nbar" ]; auto b = format("%(%s%)", a); gives b: "fooo\nbar" Is there any other function to escape string? I'm looking for

Escape a string ?

2015-04-09 Thread Temtaime via Digitalmars-d-learn
Hi ! I wonder how to escape a string in phobos ? For example auto a = [ "fooo\nbar" ]; auto b = format("%(%s%)", a); gives b: "fooo\nbar" Is there any other function to escape string? I'm looking for something that doesn't require to make an array