using System;
using System.Data;
using System.Linq;
namespace BLL
{
///
/// 字符串操作辅助类
///
public class StringHelper
{
///
/// 字符串转换
/// 'A,B,C' => 'A','B','C'
///
///
///
public static string StringConvert(string str)
{
string result = string.Empty;
if (!string.IsNullOrWhiteSpace(str))
{
string[] items = str.Split(',');
result = string.Join(",", items.Select(x => $"'{x}'"));
}
return result;
}
}
}