using System;
using static System.Console;
using System.Text.RegularExpressions;
public class Program {
public static void Main() {
string texto = "{\"time_zones\":[teste]}";
Regex rgx = new Regex(@"\[(.*)\]");
Console.Write(rgx.Match(texto).Groups[1]);
}