//将获得的换行字符串去掉换行,然后去掉最后一个"/"
		String CityS =request.getParameter("CityS");
		String test = CityS.replaceAll("\r\n", "/");
		String newCityS = test.substring(0, test.length()-1); 
		System.out.println("newCityS" + newCityS);
//将获得的换行字符串去掉换行,然后去掉最后一个"/" String CityS =request.getParameter("CityS"); String test = CityS.replaceAll("\r\n", "/"); String newCityS = test.substring(0, test.length()-1); System.out.println...
参考地址:http://commons.apache.org/proper/commons-lang/ java docs/api-release/ 1. chomp剔除 字符串 最后 一个 是\n或\r\或\r\n源码详解 public static String chomp(String str) if (isEmpty(str)) {
static function deleteLastBrlabel($str){         $regone = "/.*()$/";//匹配 最后 一个 标签         $regtwo = "/.*()$/";//匹配 最后 一个 标签         if ( preg_match($regone, $str) str = strings.Replace(str, " ", "", -1) // 去除 换行 符 str = strings.Replace(str, "\n", "", -1)
删除 字符串 中的 换行 符号的几种方式: 1.使用String的replaceAll()方法; 2.使用google guava的CharMatcher.breakingWhitespace(); 3.使用Apache Commons包的StringUtils.chomp();方法; pom依赖 <dependency> <groupId>com.google.guava&lt...