我有一个像 [123,234,321,....]
我可以使用正则表达式仅提取数字吗?
这是我现在使用的代码
public static string[] Split()
{
string s = "[123,234,345,456,567,678,789,890,100]";
var temp = s.Replace("[", "").Replace("]", "");
char[] separator = { ',' };
return temp.Split(separator);
}