少年阿宾

那些青春的岁月

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  500 Posts :: 0 Stories :: 135 Comments :: 0 Trackbacks

package org.litsoft.air.servlet;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class TestUrl {
 private static final String Url = "http://localhost:7778/Spa/UnionPayServlet1?a1s2";
 public static String result(String url){
  String result=null;
  String regex="([^?]+$)";
  Pattern pattern=Pattern.compile(regex);
  Matcher matcher=pattern.matcher(url);
  while(matcher.find()){
   result=matcher.group();
  }
  return result;
 }
 public static void main(String[] args) {
  String result=new TestUrl().result(Url);
  System.out.println("result="+result);
 }

}

posted on 2012-07-23 14:55 abin 阅读(624) 评论(0)  编辑  收藏 所属分类: 正则表达式

只有注册用户登录后才能发表评论。


网站导航: