I have two strings:
string ThePhone = "XXX-XXX-XXXX"
string SkypeBlock = "-<span style='display:none;'>-</span>";
I want to replace the last dash (-) in ThePhone with SkypeBlock
And the desired result:
TheNewPhone = "XXX-XXX-<span style='display:none;'>-</span>XXXX"
How?