View Problem

Replace the first regex match in a string with a static string

Transform "Red Green Blue" into "R*d Green Blue" by replacing /e/ with "*"
ExpandDiskEdit
cpp C++/CLI .NET 2.0
String^ Replaced = (gcnew Regex("e"))->Replace("Red Green Blue", "*", 1);

Submit a new solution for cpp
There are 14 other solutions in additional languages (clojure, erlang, fantom, fsharp ...)