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.
14 lines
353 B
14 lines
353 B
3 years ago
|
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];
|
||
|
}
|
||
|
}
|
||
|
}
|