parseText static method

String parseText(
  1. String textValue
)

Implementation

static String parseText(String textValue) {
  textValue = textValue.replaceAll('\\,', ',');
  textValue = textValue.replaceAll('\\n', '\n');
  return textValue;
}