23 lines
471 B
C#
23 lines
471 B
C#
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|