string str = context.Request["options"];
if (str.EndsWith(",")) { str = str.Substring(0, str.Length - 1); }
判断最后一个字符是否包含特定字符,去掉最后一个字符
原文:https://www.cnblogs.com/ycmediacomcn/p/8780431.html