我在文件中有以下文本:
"SHOP_ORDER001","SHOP_ORDER002","SHOP_ORDER003","SHOP_ORDER004","SHOP_ORDER005"
现在我通过读取文件并通过 spilt 分配给数组来获取值:
String orderValue = "";
string[] orderArray;
orderValue = File.ReadAllText(@"C:\File.txt");
orderArray = orderValue.Split(',');
但我得到的值为:
我需要数组中的值为“ORDER001”、“ORDER002”、“ORDER003”