Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Name、Groups[0].Id、のような文字列の配列がありますTypes[11].Name。
Name
Groups[0].Id
Types[11].Name
角かっこを含む文字列をフィルター処理して、2 つの部分に分割したいと考えています。たとえば、とGroups[0].Idに 。GroupsId
Groups
Id
正規表現を使用して角括弧を含む文字列を見つけるにはどうすればよいですか?
これを試すことができます
Regex.Split(input,@"\[.*?\][.]");