出于性能原因,预编译正则表达式中的 Java String.split 传递
2022-09-02 00:46:24
正如给定以下代码的问题所述:
public class Foo
{
public static void main(String[] args)
{
String test = "Cats go meow";
String[] tokens = test.split(" ");
}
}
是否可以按照以下方式在拆分函数中预编译该正则表达式:
public class Foo
{
Pattern pattern = Pattern.compile(" ");
public static void main(String[] args)
{
String test = "Cats go meow";
String[] tokens = test.split(pattern);
}
}