-
Notifications
You must be signed in to change notification settings - Fork 11
/
StringHelp.java
6313 lines (5310 loc) · 183 KB
/
StringHelp.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package org.hy.common;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.math.BigDecimal;
import java.net.URLDecoder;
import java.net.URLEncoder;
import java.security.MessageDigest;
import java.sql.Timestamp;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.UUID;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.hy.common.SplitSegment.InfoType;
/**
* 字符类型的工具类
*
* @author ZhengWei(HY)
* @version v1.0 2009-08-21
* v1.1 2014-08-18 1.Split分割的系统方法
* 2.xor字符串的异或运算
* 3.解释关系
* v1.2 2017-05-17 1.修复toABC26()方法的26生成AA的算法。
* v1.3 2017-09-18 1.添加 isContains() 多关键字包含判定
* 2.添加 isStartsWith() 多关键字前缀匹配判定
* 3.添加 isEndsWith() 多关键字后缀匹配判定
* v1.4 2017-11-16 1.修复unescape_toUnicode()方法,不应简单的将分号;替换成空字符。而是判定%u999;的格式下替换。
* v1.5 2017-12-23 1.添加 toNumberString() 方法,将各种数字表达方式转为正规的数字表达方式
* 1.添加 trim() 方法,去掉空格、回车、换行字符串
* v1.6 2018-03-22 1.添加 isContains() 支持有先、后顺序匹配查找关键字的功能。
* 1.添加 比正则表达式性能更高的统计getCount(...)。
* v1.7 2018-04-13 1.添加 replaceFirst(...) 系列方法
* v1.8 2018-05-04 1.添加 isEquals()、isEqualsIgnoreCase() 比较多个关键字,判定是否只少有一个相等。
* v1.9 2018-05-16 1.添加 支持中文占位符。建议人:邹德福
* v1.10 2018-05-23 1.添加 trim(String ,String)去掉字符串前后两端的指定的子字符。
* v1.11 2018-10-17 1.添加 toNumberSimplify()简化显示数字,显示允许的长度。
* 2.添加 toScientificNotation()特殊的科学计数显示数字。
* v1.12 2018-11-15 1.添加 encode() decode()两种转义方法。可对指定字符串排除转义的功能。
* v1.13 2018-12-21 1.添加 trimToDistinct()去掉某些连续重复出现的字符。如“A...B..C”,去掉重复连续的.点,就变成:“A.B.C”
* v1.14 2018-12-27 1.添加 replaceLast(...) 系列方法
* v1.15 2019-03-13 1.添加 parsePlaceholdersSequence() 占位符命名是否要求严格的规则
* v1.16 2019-08-27 1.添加 扩展 getComputeUnit() 方法,带小数精度。
* v1.17 2020-06-08 1.修改 解释占位符的系列方法parsePlaceholders()的返回结构改成PartitionMap
* v1.18 2021-09-27 1.添加 编程语言的基本数据类型的转字符串。可以配合 Help.toObject() 等方法使用,实现字符串形式的序列化和反序列化
* v1.19 2022-05-19 1.添加 货币转字符串转数字的方法 toNumber()
* v1.20 2024-03-22 1.添加 无明确分割符的拆分。类似于简单的分词 SplitMaxMatch()
*
* @createDate 2009-08-21
*/
public final class StringHelp
{
/** MD5加密(V2版)的加密类型:全数字形式 */
public static final int $MD5_Type_Num = 1;
/** MD5加密(V2版)的加密类型:数字字母混合的形式,但无特殊字符 */
public static final int $MD5_Type_Hex = 2;
/** 字符集编码类型 */
public static String [] $CharEncodings = {"UTF-8" ,"ISO-8859-1" ,"ASCII" ,"UNICODE" ,"GBK" ,"GB2312" ,"GB18030"};
private static final String $ABC = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
private static final String $ABC36 = "0123456789" + $ABC;
private static final char last2byte = (char) Integer.parseInt("00000011", 2);
private static final char last4byte = (char) Integer.parseInt("00001111", 2);
private static final char last6byte = (char) Integer.parseInt("00111111", 2);
private static final char lead6byte = (char) Integer.parseInt("11111100", 2);
private static final char lead4byte = (char) Integer.parseInt("11110000", 2);
private static final char lead2byte = (char) Integer.parseInt("11000000", 2);
private static final char [] encodeTable = new char[]{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '!', '/'};
private static final char [] encodeTable_V2 = new char[]{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
/** 匹配XML标记或Html标记的正则表达式 */
private static final String $XMLSign = "(< *XMLSignName(( *)|( [ \\S\\s]*))>[.\\S\\s]*<\\/ *XMLSignName *>)|(< *XMLSignName(( *)|( [ \\S\\s]*))\\/>)";
/** 保存XML特殊字符转换信息 */
private static InterconnectMap<String, String> $XML_EnCodes = null;
/** 匹配Email地址的正则表达式 */
private static final String $EMail = "\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*";
/** 解释方法的正则表达式。分割 xxx(...) 的形式 */
private static final String $Method = "\\w+\\([^(?!((\\()(\\))))]+\\)";
/** 解释圆括号的正则表达式。分割(...) 的形式,但不含 ( 和 ) */
private static final String $Parentheses = "\\([^(?!((\\()(\\))))]*\\)";
/** 将字符串类型的数字类型。支持千分位、货币符号 */
private static final String [] $Currency = new String[] {"," ,"," ,"¥" ,"$" ,"€"};
/** 常用的替换常量,如将关键字替换为空字符 */
public static final String [] $ReplaceNil = new String[] {""};
/** 常用的替换常量,如将关键字替换为空格 */
public static final String [] $ReplaceSpace = new String[] {" "};
/**
* 懒加载方式,初始XML特殊符号转换信息
*/
private synchronized static void initXML_EnCodes()
{
if ( Help.isNull($XML_EnCodes) )
{
$XML_EnCodes = new InterconnectMap<String ,String>();
$XML_EnCodes.put("<" ,"<");
$XML_EnCodes.put(">" ,">");
$XML_EnCodes.put("\"" ,""");
$XML_EnCodes.put("'" ,"'");
}
}
/**
* 私有构造器
*/
private StringHelp()
{
}
/**
* 随机生成指定长度的数字与字母混合的字符串
*
* @author ZhengWei(HY)
* @createDate 2018-05-23
* @version v1.0
*
* @param i_Length 随机生成的字符串长度
* @return
*/
public final static String random(int i_Length)
{
return random(i_Length ,true);
}
/**
* 随机生成指定长度的数字与字母混合的字符串
*
* @author ZhengWei(HY)
* @createDate 2018-05-23
* @version v1.0
*
* @param i_Length 随机生成的字符串长度
* @param i_HaveNumber 随机生成的字符串中是否内含数字
* @return
*/
public final static String random(int i_Length ,boolean i_HaveNumber)
{
StringBuilder v_Buffer = new StringBuilder();
if ( i_HaveNumber )
{
for (int i=1; i<=i_Length; i++)
{
v_Buffer.append($ABC36.charAt(Help.random(0 ,35)));
}
}
else
{
for (int i=1; i<=i_Length; i++)
{
v_Buffer.append($ABC.charAt(Help.random(0 ,25)));
}
}
return v_Buffer.toString();
}
/**
* 首字母大写
*
* @author ZhengWei(HY)
* @createDate 2016-02-20
* @version v1.0
*
* @param i_Str
* @return
*/
public static String toUpperCaseByFirst(String i_Str)
{
return i_Str.substring(0 ,1).toUpperCase() + i_Str.substring(1);
}
/**
* 首字母小写
*
* @author ZhengWei(HY)
* @createDate 2016-02-20
* @version v1.0
*
* @param i_Str
* @return
*/
public static String toLowerCaseByFirst(String i_Str)
{
return i_Str.substring(0 ,1).toLowerCase() + i_Str.substring(1);
}
/**
* 将字符串中的多个连续出现的空白字符删除,只保留一个。
* 如 "a b c d" 会被处理为 "a b c d"
*
* @param i_Str
* @return
*/
public static String removeSpaces(String i_Str)
{
if ( Help.isNull(i_Str) )
{
return i_Str;
}
return i_Str.replaceAll("\\s+", " ");
}
/**
* 获取UUID。全部大写,并且去除"-"字符的东东
*
* @return
*/
public final static String getUUID()
{
return UUID.randomUUID().toString().replace("-" ,"").toUpperCase();
}
public final static String getUUIDNum()
{
String [] v_UUIDArr = UUID.randomUUID().toString().split("-");
StringBuilder v_Buffer = new StringBuilder();
for (String v_UUID : v_UUIDArr)
{
long v_Value = Long.parseLong(v_UUID ,16);
v_Buffer.append(v_Value);
}
return v_Buffer.toString();
}
/**
* 字符空,则取默认值
*
* @param i_Str
* @param i_DefaultValue
* @return
*/
public final static String nvl(String i_Str ,String i_DefaultValue)
{
if ( i_Str == null || "".equals(i_Str.trim()) )
{
return i_DefaultValue;
}
else
{
return i_Str.trim();
}
}
/**
* 把多个连续的分隔符split分解成单个分隔符,并把前后的分隔符去掉
*
* @param cols ",,,aa,bbb,cc,ee,,,sdf,,,"
* @param split ",,"
* @param toSplit ","
* @return
*/
public final static String strSplit(String source, String split)
{
if( source == null || split == null)
{
return null;
}
try
{
while (source.indexOf(split + split) > -1)
{
// 去掉连续的分隔符
source = source.substring(0, source.indexOf(split + split))
+ source.substring(source.indexOf(split + split) + 1);
}
if ( source.substring(0, 1).equals(split) )
{
// 去掉第一个分隔符
source = source.substring(1);
}
if ( source.substring(source.length() - 1).equals(split) )
{
//去掉最后一个分隔符
source = source.substring(0, source.length() - 1);
}
}
catch(Exception e)
{
return "";
}
return source;
}
/**
* 把多个连续的分隔符split分解成单个分隔符,并把前后的分隔符去掉
*
* @param cols ",,,aa,bbb,cc,ee,,,sdf,,,"
* @param split ",,"
* @param toSplit ","
* @return
*/
public final static String strSplit2(String source,String split)
{
if(source == null || split == null)
{
return null;
}
try
{
while (source.indexOf(split + split) > -1)
{
// 去掉连续的分隔符
source = source.substring(0, source.indexOf(split + split)) +
source.substring(source.indexOf(split + split) + 1);
}
}
catch(Exception e)
{
return "";
}
return source;
}
/**
* 把以split分隔的字符串分组放入list中,source经过处理
*
* @param source
* @param split
* @return
*/
public final static List<String> strToList(String source,String split)
{
if(source == null || split == null)
{
return null;
}
List<String> list = new ArrayList<String>();
source = strSplit(source,split);// 整理字符串
if(source.indexOf(split) == -1)
{
list.add(source.trim()); // 单个
return list;
}
while(source.indexOf(split) > -1)
{
int L1 = source.indexOf(split);
String s1 = source.substring(0,L1);
if(!"".equals(s1))
{
//字符不包括空格
list.add(s1);
}
source = source.substring(L1 + 1);
if(source.indexOf(split) == -1)
{
list.add(source); // 加入最后一个
}
}
return list;
}
/**
* 把以split分隔的字符串分组放入list中,source没有经过处理
* ,, 之间加入空格放入list 中 把连续的之间加入空格
* @param source
* @param split
* @return
*/
public final static List<String> strToList2(String source,String split)
{
if(source == null || split == null)
{
return null;
}
List<String> list = new ArrayList<String>();
if(source.indexOf(split) == -1)
{
list.add(source.trim()); // 单个
return list;
}
while(source.indexOf(split) > -1)
{
int L1 = source.indexOf(split);
String s1 = source.substring(0,L1);
if(!"".equals(s1))
{
//字符不包括空格
list.add(s1);
}
else
{
list.add(" ");
}
source = source.substring(L1 + 1);
if(source.indexOf(split) == -1)
{
if (!"".equals(source.trim()))
{
//字符不包括空格
list.add(source.trim()); // 加入最后一个
}
else
{
list.add(" ");
}
}
}
return list;
}
/**
* 批量替换字符串
*
* Java自带的String.replaceAll()方法,是通过正则表达式做的替换动作,
* 对于一些特殊字符,要做十分复杂的处理,并不好用。
*
* 比如说:"Q美元Q".replaceAll("美元" ,"$"); 方法会出错。
*
* 测试环境为:Mac:OSX EI Capitan , JDK:1.7.0_45-b18
*
* @author ZhengWei(HY)
* @createDate 2016-02-20
* @version v1.0
*
* @param i_Info
* @param i_Replaces Map.key 替换字符串。Map.value 被替换字符串。
* 当 Map.value 为 NULL 时,自动用空字符串""替换。这也是与replaceAll(String ,[] ,[])不同的地点之一。
* 内部对i_Replaces有降序排序顺序的动作,并形成有有顺序的LinkedMap。用于解决 :A、:AA 同时存在时的混乱
* @return
*/
public final static String replaceAll(final String i_Info ,final Map<String ,?> i_Replaces)
{
return StringHelp.replaceAll(i_Info ,i_Replaces ,true);
}
/**
* 批量替换字符串
*
* Java自带的String.replaceAll()方法,是通过正则表达式做的替换动作,
* 对于一些特殊字符,要做十分复杂的处理,并不好用。
*
* 比如说:"Q美元Q".replaceAll("美元" ,"$"); 方法会出错。
*
* 测试环境为:Mac:OSX EI Capitan , JDK:1.7.0_45-b18
*
* @author ZhengWei(HY)
* @createDate 2016-02-20
* @version v1.0
* v2.0 2018-02-24 修复:当替换为一个空格" "时,因Help.NVL()的再次处理,为替换为空字符""了。
*
* @param i_Info
* @param i_Replaces Map.key 替换字符串。Map.value 被替换字符串。
* 当 Map.value 为 NULL 时,自动用空字符串""替换。这也是与replaceAll(String ,[] ,[])不同的地点之一。
* 内部对i_Replaces有降序排序顺序的动作,并形成有有顺序的LinkedMap。用于解决 :A、:AA 同时存在时的混乱
* @param i_OrderBy 是否降序排序顺序
* @return
*/
public final static String replaceAll(final String i_Info ,final Map<String ,?> i_Replaces ,boolean i_OrderBy)
{
if ( Help.isNull(i_Replaces) )
{
return i_Info;
}
Map<String ,?> v_RRS = null;
if ( i_OrderBy )
{
v_RRS = Help.toReverse(i_Replaces);
}
else
{
v_RRS = i_Replaces;
}
String v_Ret = i_Info;
for (Map.Entry<String, ?> v_RR : v_RRS.entrySet())
{
if ( v_RR.getValue() == null )
{
v_Ret = StringHelp.replaceAll(v_Ret ,v_RR.getKey() ,"");
}
else
{
v_Ret = StringHelp.replaceAll(v_Ret ,v_RR.getKey() ,v_RR.getValue().toString());
}
}
return v_Ret;
}
/**
* 批量替换字符串
*
* Java自带的String.replaceAll()方法,是通过正则表达式做的替换动作,
* 对于一些特殊字符,要做十分复杂的处理,并不好用。
*
* 比如说:"Q美元Q".replaceAll("美元" ,"$"); 方法会出错。
*
* 测试环境为:Mac:OSX EI Capitan , JDK:1.7.0_45-b18
*
* @author ZhengWei(HY)
* @createDate 2015-12-17
* @version v1.0
*
* @param i_Info
* @param i_Replaces 有替换先后顺序的替换字符串
* @param i_ReplaceBys 有替换先后顺序的被替换字符串
* 当i_ReplaceBys.length小于i_Replaces.length时,i_Replaces大于i_ReplaceBys的部分,
* 全部用i_ReplaceBys的最后一个元素替换,
* 如,replaceAll("ABC" ,new String[]{"A" ,"B" ,"C"} ,new String[]{" "}) 将返回三个空格。
* @return
*/
public final static String replaceAll(final String i_Info ,final String [] i_Replaces ,final String [] i_ReplaceBys)
{
if ( Help.isNull(i_Replaces) || Help.isNull(i_ReplaceBys) )
{
return i_Info;
}
String v_Ret = i_Info;
int v_Size = Math.min(i_Replaces.length ,i_ReplaceBys.length);
int v_Index = 0;
for (v_Index=0; v_Index<v_Size; v_Index++)
{
v_Ret = StringHelp.replaceAll(v_Ret ,i_Replaces[v_Index] ,i_ReplaceBys[v_Index]);
}
if ( i_Replaces.length > i_ReplaceBys.length )
{
for (; v_Index<i_Replaces.length; v_Index++)
{
v_Ret = StringHelp.replaceAll(v_Ret ,i_Replaces[v_Index] ,i_ReplaceBys[i_ReplaceBys.length - 1]);
}
}
return v_Ret;
}
/**
* 替换字符串
*
* Java自带的String.replaceAll()方法,是通过正则表达式做的替换动作,
* 对于一些特殊字符,要做十分复杂的处理,并不好用。
*
* 比如说:"Q美元Q".replaceAll("美元" ,"$"); 方法会出错。
*
* 测试环境为:Mac:OSX EI Capitan , JDK:1.7.0_45-b18
*
* @author ZhengWei(HY)
* @createDate 2015-12-17
* @version v1.0
* v2.0 修正:当 i_ReplaceBy = "",并且在第0个位置只查找到一个要替换的东东时,会出现无法替换的问题。
*
* @param i_Info
* @param i_Replace
* @param i_ReplaceBy
* @return
*/
public final static String replaceAll(final String i_Info ,final String i_Replace ,final String i_ReplaceBy)
{
if ( null == i_Info
|| null == i_Replace
|| null == i_ReplaceBy
|| 0 >= i_Info.length()
|| 0 >= i_Replace.length() )
{
return i_Info;
}
StringBuilder v_Buffer = new StringBuilder();
int v_RLen = i_Replace.length();
int v_FromIndex = i_Info.indexOf(i_Replace);
int v_LastIndex = 0 - v_RLen;
boolean v_IsReplace = false;
while ( v_FromIndex >= 0 )
{
v_LastIndex += v_RLen;
v_Buffer.append(i_Info.substring(v_LastIndex ,v_FromIndex)).append(i_ReplaceBy);
v_LastIndex = v_FromIndex;
v_FromIndex = i_Info.indexOf(i_Replace ,v_FromIndex + v_RLen);
v_IsReplace = true;
}
if ( !v_IsReplace )
{
return i_Info;
}
else
{
v_Buffer.append(i_Info.substring(v_LastIndex + v_RLen));
}
return v_Buffer.toString();
}
/**
* 批量替换字符串(每个关键字只替换一次)
*
* Java自带的String.replace()方法,是通过正则表达式做的替换动作,
* 对于一些特殊字符,要做十分复杂的处理,并不好用。
*
* 比如说:"Q美元Q".replaceFirst("美元" ,"$"); 方法会出错。
*
* 测试环境为:Mac:OSX EI Capitan , JDK:1.7.0_45-b18
*
* @author ZhengWei(HY)
* @createDate 2018-04-13
* @version v1.0
*
* @param i_Info
* @param i_Replaces Map.key 替换字符串。Map.value 被替换字符串。
* 当 Map.value 为 NULL 时,自动用空字符串""替换。这也是与replaceAll(String ,[] ,[])不同的地点之一。
* 内部对i_Replaces有降序排序顺序的动作,并形成有有顺序的LinkedMap。用于解决 :A、:AA 同时存在时的混乱
* @return
*/
public final static String replaceFirst(final String i_Info ,final Map<String ,?> i_Replaces)
{
return StringHelp.replaceFirst(i_Info ,i_Replaces ,true);
}
/**
* 批量替换字符串(每个关键字只替换一次)
*
* Java自带的String.replace()方法,是通过正则表达式做的替换动作,
* 对于一些特殊字符,要做十分复杂的处理,并不好用。
*
* 比如说:"Q美元Q".replaceFirst("美元" ,"$"); 方法会出错。
*
* 测试环境为:Mac:OSX EI Capitan , JDK:1.7.0_45-b18
*
* @author ZhengWei(HY)
* @createDate 2018-04-13
* @version v1.0
*
* @param i_Info
* @param i_Replaces Map.key 替换字符串。Map.value 被替换字符串。
* 当 Map.value 为 NULL 时,自动用空字符串""替换。这也是与replaceAll(String ,[] ,[])不同的地点之一。
* 内部对i_Replaces有降序排序顺序的动作,并形成有有顺序的LinkedMap。用于解决 :A、:AA 同时存在时的混乱
* @param i_OrderBy 是否降序排序顺序
* @return
*/
public final static String replaceFirst(final String i_Info ,final Map<String ,?> i_Replaces ,boolean i_OrderBy)
{
if ( Help.isNull(i_Replaces) )
{
return i_Info;
}
Map<String ,?> v_RRS = null;
if ( i_OrderBy )
{
v_RRS = Help.toReverse(i_Replaces);
}
else
{
v_RRS = i_Replaces;
}
String v_Ret = i_Info;
for (Map.Entry<String, ?> v_RR : v_RRS.entrySet())
{
if ( v_RR.getValue() == null )
{
v_Ret = StringHelp.replaceFirst(v_Ret ,v_RR.getKey() ,"");
}
else
{
v_Ret = StringHelp.replaceFirst(v_Ret ,v_RR.getKey() ,v_RR.getValue().toString());
}
}
return v_Ret;
}
/**
* 批量替换字符串(每个关键字只替换一次)
*
* Java自带的String.replace()方法,是通过正则表达式做的替换动作,
* 对于一些特殊字符,要做十分复杂的处理,并不好用。
*
* 比如说:"Q美元Q".replaceFirst("美元" ,"$"); 方法会出错。
*
* 测试环境为:Mac:OSX EI Capitan , JDK:1.7.0_45-b18
*
* @author ZhengWei(HY)
* @createDate 2018-04-13
* @version v1.0
*
* @param i_Info
* @param i_Replaces 有替换先后顺序的替换字符串
* @param i_ReplaceBys 有替换先后顺序的被替换字符串
* 当i_ReplaceBys.length小于i_Replaces.length时,i_Replaces大于i_ReplaceBys的部分,
* 全部用i_ReplaceBys的最后一个元素替换,
* 如,replaceFirst("ABC" ,new String[]{"A" ,"B" ,"C"} ,new String[]{" "}) 将返回三个空格。
* @return
*/
public final static String replaceFirst(final String i_Info ,final String [] i_Replaces ,final String [] i_ReplaceBys)
{
if ( Help.isNull(i_Replaces) || Help.isNull(i_ReplaceBys) )
{
return i_Info;
}
String v_Ret = i_Info;
int v_Size = Math.min(i_Replaces.length ,i_ReplaceBys.length);
int v_Index = 0;
for (v_Index=0; v_Index<v_Size; v_Index++)
{
v_Ret = StringHelp.replaceFirst(v_Ret ,i_Replaces[v_Index] ,i_ReplaceBys[v_Index]);
}
if ( i_Replaces.length > i_ReplaceBys.length )
{
for (; v_Index<i_Replaces.length; v_Index++)
{
v_Ret = StringHelp.replaceFirst(v_Ret ,i_Replaces[v_Index] ,i_ReplaceBys[i_ReplaceBys.length - 1]);
}
}
return v_Ret;
}
/**
* 替换字符串(每个关键字只替换一次)
*
* Java自带的String.replace()方法,是通过正则表达式做的替换动作,
* 对于一些特殊字符,要做十分复杂的处理,并不好用。
*
* 比如说:"Q美元Q".replaceFirst("美元" ,"$"); 方法会出错。
*
* 测试环境为:Mac:OSX EI Capitan , JDK:1.7.0_45-b18
*
* @author ZhengWei(HY)
* @createDate 2018-04-13
* @version v1.0
*
* @param i_Info
* @param i_Replace
* @param i_ReplaceBy
* @return
*/
public final static String replaceFirst(final String i_Info ,final String i_Replace ,final String i_ReplaceBy)
{
if ( null == i_Info
|| null == i_Replace
|| null == i_ReplaceBy
|| 0 >= i_Info.length()
|| 0 >= i_Replace.length() )
{
return i_Info;
}
StringBuilder v_Buffer = new StringBuilder();
int v_RLen = i_Replace.length();
int v_FromIndex = i_Info.indexOf(i_Replace);
if ( v_FromIndex >= 0 )
{
v_Buffer.append(i_Info.substring(0 ,v_FromIndex));
v_Buffer.append(i_ReplaceBy);
v_Buffer.append(i_Info.substring(v_FromIndex + v_RLen));
}
else
{
return i_Info;
}
return v_Buffer.toString();
}
/**
* 批量替换字符串(每个关键字只替换一次,从末尾替换起)
*
* Java自带的String.replace()方法,是通过正则表达式做的替换动作,
* 对于一些特殊字符,要做十分复杂的处理,并不好用。
*
* 比如说:"Q美元Q".replaceLast("美元" ,"$"); 方法会出错。
*
* 测试环境为:Mac:OSX EI Capitan , JDK:1.7.0_45-b18
*
* @author ZhengWei(HY)
* @createDate 2018-12-27
* @version v1.0
*
* @param i_Info
* @param i_Replaces Map.key 替换字符串。Map.value 被替换字符串。
* 当 Map.value 为 NULL 时,自动用空字符串""替换。这也是与replaceAll(String ,[] ,[])不同的地点之一。
* 内部对i_Replaces有降序排序顺序的动作,并形成有有顺序的LinkedMap。用于解决 :A、:AA 同时存在时的混乱
* @return
*/
public final static String replaceLast(final String i_Info ,final Map<String ,?> i_Replaces)
{
return StringHelp.replaceLast(i_Info ,i_Replaces ,true);
}
/**
* 批量替换字符串(每个关键字只替换一次,从末尾替换起)
*
* Java自带的String.replace()方法,是通过正则表达式做的替换动作,
* 对于一些特殊字符,要做十分复杂的处理,并不好用。
*
* 比如说:"Q美元Q".replaceLast("美元" ,"$"); 方法会出错。
*
* 测试环境为:Mac:OSX EI Capitan , JDK:1.7.0_45-b18
*
* @author ZhengWei(HY)
* @createDate 2018-12-27
* @version v1.0
*
* @param i_Info
* @param i_Replaces Map.key 替换字符串。Map.value 被替换字符串。
* 当 Map.value 为 NULL 时,自动用空字符串""替换。这也是与replaceAll(String ,[] ,[])不同的地点之一。
* 内部对i_Replaces有降序排序顺序的动作,并形成有有顺序的LinkedMap。用于解决 :A、:AA 同时存在时的混乱
* @param i_OrderBy 是否降序排序顺序
* @return
*/
public final static String replaceLast(final String i_Info ,final Map<String ,?> i_Replaces ,boolean i_OrderBy)
{
if ( Help.isNull(i_Replaces) )
{
return i_Info;
}
Map<String ,?> v_RRS = null;
if ( i_OrderBy )
{
v_RRS = Help.toReverse(i_Replaces);
}
else
{
v_RRS = i_Replaces;
}
String v_Ret = i_Info;
for (Map.Entry<String, ?> v_RR : v_RRS.entrySet())
{
if ( v_RR.getValue() == null )
{
v_Ret = StringHelp.replaceLast(v_Ret ,v_RR.getKey() ,"");
}
else
{
v_Ret = StringHelp.replaceLast(v_Ret ,v_RR.getKey() ,v_RR.getValue().toString());
}
}
return v_Ret;
}
/**
* 批量替换字符串(每个关键字只替换一次,从末尾替换起)
*
* Java自带的String.replace()方法,是通过正则表达式做的替换动作,
* 对于一些特殊字符,要做十分复杂的处理,并不好用。
*
* 比如说:"Q美元Q".replaceLast("美元" ,"$"); 方法会出错。
*
* 测试环境为:Mac:OSX EI Capitan , JDK:1.7.0_45-b18
*
* @author ZhengWei(HY)
* @createDate 2018-12-27
* @version v1.0
*
* @param i_Info
* @param i_Replaces 有替换先后顺序的替换字符串
* @param i_ReplaceBys 有替换先后顺序的被替换字符串
* 当i_ReplaceBys.length小于i_Replaces.length时,i_Replaces大于i_ReplaceBys的部分,
* 全部用i_ReplaceBys的最后一个元素替换,
* 如,replaceFirst("ABC" ,new String[]{"A" ,"B" ,"C"} ,new String[]{" "}) 将返回三个空格。
* @return
*/
public final static String replaceLast(final String i_Info ,final String [] i_Replaces ,final String [] i_ReplaceBys)
{
if ( Help.isNull(i_Replaces) || Help.isNull(i_ReplaceBys) )
{
return i_Info;
}
String v_Ret = i_Info;
int v_Size = Math.min(i_Replaces.length ,i_ReplaceBys.length);
int v_Index = 0;
for (v_Index=0; v_Index<v_Size; v_Index++)
{
v_Ret = StringHelp.replaceLast(v_Ret ,i_Replaces[v_Index] ,i_ReplaceBys[v_Index]);
}
if ( i_Replaces.length > i_ReplaceBys.length )
{
for (; v_Index<i_Replaces.length; v_Index++)
{
v_Ret = StringHelp.replaceLast(v_Ret ,i_Replaces[v_Index] ,i_ReplaceBys[i_ReplaceBys.length - 1]);
}
}
return v_Ret;
}
/**
* 替换字符串(每个关键字只替换一次,从末尾替换起)
*
* Java自带的String.replace()方法,是通过正则表达式做的替换动作,
* 对于一些特殊字符,要做十分复杂的处理,并不好用。
*
* 比如说:"Q美元Q".replaceLast("美元" ,"$"); 方法会出错。
*
* 测试环境为:Mac:OSX EI Capitan , JDK:1.7.0_45-b18
*