forum

Home / DeveloperSection / Forums / Is there a better way to format this string?

Is there a better way to format this string?

Manoj Bhatt 1987 12-Dec-2013

Is there a better way to format this string?

var Mac = sdr.GetString(0);

string trimMac = Mac.Replace("-", "");

string formatMac = trimMac.Insert(4, ".");

string formatAgain = formatMac.Insert(9, ".");

string dudeWTF = formatAgain.Trim();


Please help.

c# c# 
Updated on 12-Dec-2013

Can you answer this question?


Answer

1 Answers

Liked By