串匹配:依据前缀和后缀确定目标子串

串匹配:根据前缀和后缀确定目标子串这样就行: String str prefix + keyword + postfix //如prefix +

串匹配:根据前缀和后缀确定目标子串

这样就行: 

String str = prefix + keyword + postfix; //如"prefix" + "Keyword" + "Postfix"return str.substring(prefix.length(), str.indexOf(postfix)); //"Keyword"