I have a RegexMatch object which I'd like to convert into a string:
mm = match(r"(?<=Info: ).+", "Info: Kim") However, I can't figure out how to convert it into a string. The following does not work:
String(mm)convert(String, mm)
How is this supposed to be accomplished?