getLink static method

String getLink(
  1. String value
)

Returns the link of an anchor tag

Implementation

static String getLink(String value) {
  return value.replaceAll('__#COLON#__', ':');
}