本文介绍了将字符串拆分为字符串数组。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在C#中执行sql查询时遇到问题。当字符串在IN CLAUSE中包含超过1000个enteries时,sql查询会抛出错误。该字符串有超过1000个子字符串,每个子字符串由'','分隔。
我想将字符串拆分成字符串数组,每个字符串包含999个字符串,分别用'',''。
或
如何在字符串中找到'',''的第n个出现。
解决方案
I am facing a problem while executing a sql query in C#.The sql query throws an error when the string contains more than 1000 enteries in the IN CLAUSE .The string has more than 1000 substrings each seperated by '',''.
I want to split the string into string array each containing 999 strings seperated by '',''.
or
How can i find the nth occurence of '','' in a string.
解决方案
这篇关于将字符串拆分为字符串数组。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!