C#不懂,不过在Excel中可以用Split函数分解字符串到一个数组中,比如:CommentList="abc假设其中"<"表示回车换行符tmp=Split(CommentList,vbCrLf)ActiveSheet.Cells(1,1).Resize(Ubound(tmp)+1,1)=WorksheetFunction.Transpose(tmp)tmp为下标从0开始的数组。