using System.Linq; namespace Sai.Common.Shared.WBSCoder { public class WbsCoderUtils { public static string FormatWbsCode(string temp) { temp = temp.Trim(); if (temp.Contains('(')) { temp = temp.Replace('(', '('); } if (temp.Contains(')')) { temp = temp.Replace(')', ')'); } return temp; } } }