How would you convert a \r to its UTF-8 counterpart ?
How would you convert a \r to its UTF-8 counterpart ?
- Subject: How would you convert a \r to its UTF-8 counterpart ?
- From: Stéphane Sudre <email@hidden>
- Date: Tue, 25 Jul 2006 23:20:19 +0200
Let's say I want to save the following string in a .plist file:
"this is a stupid line of text, isn't it?\r"
and the resulting .plist shall be something like this:
<I don't remember the plist header so this is a replacement>
<dict>
<key>A string</key>
<string> this is a stupid line of text, isn't it?
</string>
</dict>
</I should remember them though>
The idea being to have the \r character be replaced by its hexa value.
If I save a NSDictionary using the writeToFile:atomically: API, I will
get a '\r'.
If I replace the \r with 
, I will get &#x0D; of course.
Any idea on how to do this?
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden