I am working on something that enforces me to clean a String
value by retrieving only some specific substring
values.
The String
follows the following pattern:
param1=value1¶m2=value2¶m3=value3¶m4=value4¶m5=value5
I need a solution that retrieves the appropriate values {value1, value2, value3}
.
Is there anything ready for this purpose in commans-lang3
?