Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个像这样的字符串:
选择 Sparte_id、Registernummer、Gesellschaft_ID、pk_id、Gesellschaft_Name、gesellschaft_crm、
现在我想从字符串中删除最后一个 ,(逗号)。最后一个逗号后有一个、两个或三个空格。
我正在考虑删除最后几个字母。我怎么能这样做?
使用string.TrimEnd:
var result = query.TrimEnd(',', ' ', '\n');
一个建议 - 看起来您正在尝试构建字段列表(逗号分隔) - 尝试使用:
var fields = new List<string>(); var csv = fields.Aggregate((x,y) => x + ";" + y);