getCommonDisplay method

String getCommonDisplay(
  1. String code
)

Implementation

String getCommonDisplay(String code) {
  return code.replaceAll('[', '').replaceAll(']', '');
}