You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
353 B
13 lines
353 B
namespace BBWY.Server.Business.PlatformSDK.DataExtension
|
|
{
|
|
public static class JDSkuNameExtension
|
|
{
|
|
public static string SimplifySkuName(this string skuName)
|
|
{
|
|
if (!skuName.Contains(" "))
|
|
return skuName;
|
|
var s = skuName.Split(' ');
|
|
return s[s.Length - 1];
|
|
}
|
|
}
|
|
}
|
|
|