!7 p { S code = text2floatingLetters("HELLO WORLD"); for (S line : tlft(code)) { L tok = javaTok(line); if (jmatch2("Char at ( \\* )", tok)) { print("Match!"); tok = codeTokens(tok); char c = toChar(unquote(tok.get(1))); Rect r = new Rect(getInt(tok, 4), getInt(tok, 5), getInt(tok, 7), getInt(tok, 8)); print("Char " + quote(c) + " at " + r); } else print("Non-match? " + line); } }