An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
I think that you can use two replaces, or:
string sample = "Print Computer information";
string result = Regex.Replace( sample, @"(Print )(.*)( information)", "$1a $2 operation$3" );