Commit 3c5622a355fa7c8f628e1fc4e65578b1fa53849e
1 parent
101a0d7a
Exists in
master
1.去除首尾空格时调用 去除特殊字符
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
build.gradle
| @@ -59,7 +59,7 @@ uploadArchives { | @@ -59,7 +59,7 @@ uploadArchives { | ||
| 59 | authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD) | 59 | authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD) |
| 60 | } | 60 | } |
| 61 | pom.project { | 61 | pom.project { |
| 62 | - version '1.1.100' | 62 | + version '1.1.101' |
| 63 | artifactId ARTIFACT_Id | 63 | artifactId ARTIFACT_Id |
| 64 | groupId GROUP_ID | 64 | groupId GROUP_ID |
| 65 | packaging TYPE | 65 | packaging TYPE |
src/main/java/com/taover/util/UtilString.java
| @@ -107,7 +107,7 @@ public class UtilString { | @@ -107,7 +107,7 @@ public class UtilString { | ||
| 107 | } | 107 | } |
| 108 | 108 | ||
| 109 | public static String replaceNoBreakBackspace(String data, String replaceStr) { | 109 | public static String replaceNoBreakBackspace(String data, String replaceStr) { |
| 110 | - return data.replaceAll(new String(new byte[] {-62, -92}), replaceStr); | 110 | + return data.replaceAll(new String(new byte[] {-62, -96}), replaceStr); |
| 111 | } | 111 | } |
| 112 | 112 | ||
| 113 | /** | 113 | /** |