UIMA RUTA - how to do find & replace using regular expression and groups
问题 RUTA newbie here. I'm processing a document using RUTA and have a lot of normalization to do before I can start annotating. I'm trying to find the best way to do a Find and Replace of sequence of characters using regular expressions and groups on the original document in RUTA. In essence, I'm trying to see how to do something similar to a String.replaceAll in RUTA. For example, in Java, inputString = inputString.replaceAll( "(?i)7\\s*\\(SEVEN\\)", "7"); But I can't figure out a simple way to