|
Groovy example source code file (TripleQuotedStringTest.groovy)
The Groovy TripleQuotedStringTest.groovy source code
package groovy
class TripleQuotedStringTest extends GroovyTestCase {
void testTripleQuotedString() {
def s = """
Lots of 'text' with a variety of ""quoting "" and
a few lines
and some escaped \""" quoting and
an ending""".trim()
println(s)
assert s != null
def idx = s.indexOf("quoting and")
assert idx > 0
}
static void main( String[] args ) {
def o = new TripleQuotedStringTest();
o.testTripleQuotedString();
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy TripleQuotedStringTest.groovy source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.