digitalmars.D.learn - std.regex.replace
- Vladimir Voinkov <v.voinkov gmail.com> Jul 29 2009
- Stewart Gordon <smjg_1998 yahoo.com> Jul 29 2009
std.regex.replace does not compile with wstring:
auto x = std.regex.regex ("abc"w);
wchar[] buffer = "abc"w.dup;
std.regex.replace (buffer, x, "def"w);
Jul 29 2009
Vladimir Voinkov wrote:std.regex.replace does not compile with wstring:
Correct. Stewart.
Jul 29 2009








Stewart Gordon <smjg_1998 yahoo.com>