如何以字符串为分割点将另一字符串分割成两段。例如:IOException 以Exce为分割点分割为IO和ption两段。
String str = "IOException";String[] strs = str.split("Exce");