I'm trying to replace the "00" that might come from a phone number when a user enters the number. And of course I only want the first 00 to get replaced with a + sign. In Java there is the method:
result.replaceFirst("00", "+");
Is there anything like that in .NET? Or is there any smart way to do this in vb.NET?