fork download
  1. class Ideone {
  2. static void main(String[] args) {
  3. String rseFiltersToRemove = "inactiveCatalog%2CwrongTransaction"
  4. ArrayList rseFiltersToRemoveList = rseFiltersToRemove.split('%2C')
  5. print(rseFiltersToRemoveList)
  6. }
  7. }
  8.  
Success #stdin #stdout 0.82s 2252800KB
stdin
Standard input is empty
stdout
[inactiveCatalog, wrongTransaction]