次の方法でC#で文字列を分割しようとしています:
着信文字列は次の形式です
string str = "[message details in here][another message here]/n/n[anothermessage here]"
そして、それをフォームの文字列の配列に分割しようとしています
string[0] = "[message details in here]"
string[1] = "[another message here]"
string[2] = "[anothermessage here]"
私はこのような方法でそれをやろうとしていました
string[] split = Regex.Split(str, @"\[[^[]+\]");
しかし、この方法では正しく動作しません。空の配列または文字列を取得しているだけです
どんな助けでも大歓迎です!