mirror of https://github.com/adamdruppe/arsd.git
use replacement char instead of nothing in lossy read
This commit is contained in:
parent
949e91bdbe
commit
13c7ef0eb7
|
@ -47,6 +47,8 @@ import std.string;
|
||||||
import std.array;
|
import std.array;
|
||||||
import std.conv;
|
import std.conv;
|
||||||
|
|
||||||
|
// FIXME: use replacement char here instead
|
||||||
|
|
||||||
/// Like convertToUtf8, but if the encoding is unknown, it just strips all chars > 127 and calls it done instead of throwing
|
/// Like convertToUtf8, but if the encoding is unknown, it just strips all chars > 127 and calls it done instead of throwing
|
||||||
string convertToUtf8Lossy(immutable(ubyte)[] data, string dataCharacterEncoding) {
|
string convertToUtf8Lossy(immutable(ubyte)[] data, string dataCharacterEncoding) {
|
||||||
try {
|
try {
|
||||||
|
@ -59,6 +61,8 @@ string convertToUtf8Lossy(immutable(ubyte)[] data, string dataCharacterEncoding)
|
||||||
foreach(b; data)
|
foreach(b; data)
|
||||||
if(b < 128)
|
if(b < 128)
|
||||||
ret ~= b;
|
ret ~= b;
|
||||||
|
else
|
||||||
|
ret ~= '\uFFFD';
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue