I have the following value.
String dato="SDI87H";
And I wish to return SD-I8-7H
I've tried with
String.Format("{0:##-##-##}", dato);
But it is not, since the value that must be delivered is numeric, but in this case I must deliver a string, so I can add hyphens.
I would like to know the format or regular expression of how to do the return in the desired format that I have outlined in the example.