2

文字列内の特定の単語を見つけて、それらの単語を でラップしようとしています<b>。以下は私が持っているものですが、これを行うためのより効率的なグルーヴィーな方法があるかどうか疑問に思っていますか?

void testSomething() {
    def myText = "The quick brown fox is very feisty today"
    def BOUNDS = /\b/
    def myWords = "quick very"
    def words =  myWords.tokenize(" ").join("|")
    def regex = /$BOUNDS($words)$BOUNDS/
    def found = ''
    myText.eachMatch(regex) { match ->
        found += match[0] + ' '
    }

    assert found == 'quick very '

    def foundList = found.tokenize(" ")
    def newList = []

    myText.tokenize(" ").each {word ->
        if (foundList.contains(word))
            word = "<b>${word}</b>"
        newList.add(word)
    }

    assert "The <b>quick</b> brown fox is <b>very</b> feisty today" ==    newList.join(" ")
}
4

1 に答える 1

0

もちろん、を使用してString.replaceAll()ください。

def myText = "The quick brown fox is very feisty today"
def myWords = ['quick', 'very']

myWords.each {
    myText = myText.replaceAll(it, "<b>$it</b>")
}

assert myText == "The <b>quick</b> brown fox is <b>very</b> feisty today"
于 2013-01-09T19:17:43.540 に答える