本文介绍了如何摆脱“输入字符串格式不正确”?错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 你好, 我有以下代码: int tSectionNo = Convert.ToInt32(Regex.Match(TempSectionTitleArray [icm],(。+)\\ |)。Groups [1] .Value); 我收到以下错误: 输入字符串的格式不正确 TempSectionTitleArray 是一个默认情况下初始化为null的String数组。 请帮忙。 问候 Aman Chaurasia 我尝试过: int tSectionNo = Convert.ToInt32(正则表达式.Match(TempSectionTitleArray [icm],(。+)\\ |)。Groups [1] .Value); 解决方案 Hello,I have the following line of code:int tSectionNo = Convert.ToInt32(Regex.Match(TempSectionTitleArray[icm], "(.+)\\|").Groups[1].Value);and I am getting the following error:Input string was not in a correct formatTempSectionTitleArray is a String array initialized to null by default.Please help.RegardsAman ChaurasiaWhat I have tried:int tSectionNo = Convert.ToInt32(Regex.Match(TempSectionTitleArray[icm], "(.+)\\|").Groups[1].Value); 解决方案 这篇关于如何摆脱“输入字符串格式不正确”?错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-15 14:10