本文介绍了需要找出一个字符串是否包含多于2个字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要解析一个字符串并找出它是否比2

parenthisis还要多。 soemone可以告诉我一个快速的方法。

I need to parse a string and find out if it contians mroe than 2
parenthisis. Can soemone tell me a quick way of doing this.

推荐答案



快速或简单代码快速?


第一个可能是一个while循环

with IndexOfAny。


第二个可能是:


if(s.Split("()" .ToCharArray ())。长度3)


Arne

Quick as in fast or as in simple code ?

The first would probably be a while loop
with IndexOfAny.

The second could be:

if(s.Split("()".ToCharArray()).Length 3)

Arne




这篇关于需要找出一个字符串是否包含多于2个字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 18:47