如有一串字符串:
<abcd efg>higklmnopq<rstu vwxyz>
java代码如下:
1
2
3
4
5
6
7
|
public class StringTest { public static void main(String[] args) { String str = "<abcd efg>higklmnopq<rstu vwxyz" ; System.out.println(str.substring(str.indexOf( ">" )+ 1 , str.lastIndexOf( "<" ))); } } |
以上这篇Java截取特定两个标记之间的字符串实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。