I have string of the following format:
string test = "test.BO.ID";
My aim is string that part of the string whatever comes after first dot. So ideally I am expecting output as "BO.ID".
Here is what I have tried:
// Checking for the first occurence and take whatever comes after dot
var output = Regex.Match(test, @"^(?=.).*?");
The output I am getting is empty.
What is the modification I need to make it for Regex?