Files

23 lines
471 B
C#
Raw Permalink Normal View History

2026-02-23 14:58:05 +08:00
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;
}
}
}