Skip to content
Skip to breadcrumbs
Skip to header menu
Skip to action menu
Skip to quick search
Quick Search
Browse
Pages
Blog
Labels
Attachments
Mail
Advanced
What’s New
Space Directory
Feed Builder
Keyboard Shortcuts
Confluence Gadgets
Log In
Sign Up
Dashboard
Groovy
Copy Page
You are not logged in. Any changes you make will be marked as
anonymous
. You may want to
Log In
if you already have an account. You can also
Sign Up
for a new account.
This page is being edited by
.
Paragraph
Paragraph
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Preformatted
Quote
Bold
Italic
Underline
More colours
Strikethrough
Subscript
Superscript
Monospace
Clear Formatting
Bullet list
Numbered list
Outdent
Indent
Align left
Align center
Align right
Link
Table
Insert
Insert Content
Image
Link
Attachment
Symbol
Emoticon
Wiki Markup
Horizontal rule
tinymce.confluence.insert_menu.macro_desc
Info
JIRA Issue
Status
Gallery
Tasklist
Table of Contents
Other Macros
Page Layout
No Layout
Two column (simple)
Two column (simple, left sidebar)
Two column (simple, right sidebar)
Three column (simple)
Two column
Two column (left sidebar)
Two column (right sidebar)
Three column
Three column (left and right sidebars)
Undo
Redo
Find/Replace
Keyboard Shortcuts Help
<table class="wysiwyg-macro" data-macro-name="unmigrated-wiki-markup" style="background-image: url(/plugins/servlet/confluence/placeholder/macro-heading?definition=e3VubWlncmF0ZWQtd2lraS1tYXJrdXB9&locale=en_GB&version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre>Groovy supports regular expressions natively using the +\~"pattern"+ expression, which creates a compiled Java Pattern object from the given pattern string. Groovy also supports the =\~ (create Matcher) and ==\~ (returns boolean, whether String matches the pattern) operators. For matchers having groups, matcher\[index\] is either a matched String or a List of matched group Strings. {code} import java.util.regex.Matcher import java.util.regex.Pattern // ~ creates a Pattern from String def pattern = ~/foo/ assert pattern instanceof Pattern assert pattern.matcher("foo").matches() // returns TRUE assert pattern.matcher("foobar").matches() // returns FALSE, because matches() must match whole String // =~ creates a Matcher, and in a boolean context, it's "true" if it has at least one match, "false" otherwise. assert "cheesecheese" =~ "cheese" assert "cheesecheese" =~ /cheese/ assert "cheese" == /cheese/ /*they are both string syntaxes*/ assert ! ("cheese" =~ /ham/) // ==~ tests, if String matches the pattern assert "2009" ==~ /\d+/ // returns TRUE assert "holla" ==~ /\d+/ // returns FALSE // lets create a Matcher def matcher = "cheesecheese" =~ /cheese/ assert matcher instanceof Matcher // lets do some replacement def cheese = ("cheesecheese" =~ /cheese/).replaceFirst("nice") assert cheese == "nicecheese" assert "color" == "colour".replaceFirst(/ou/, "o") cheese = ("cheesecheese" =~ /cheese/).replaceAll("nice") assert cheese == "nicenice" // simple group demo // You can also match a pattern that includes groups. First create a matcher object, // either using the Java API, or more simply with the =~ operator. Then, you can index // the matcher object to find the matches. matcher[0] returns a List representing the // first match of the regular expression in the string. The first element is the string // that matches the entire regular expression, and the remaining elements are the strings // that match each group. // Here's how it works: def m = "foobarfoo" =~ /o(b.*r)f/ assert m[0] == ["obarf", "bar"] assert m[0][1] == "bar" // Although a Matcher isn't a list, it can be indexed like a list. In Groovy 1.6 // this includes using a collection as an index: matcher = "eat green cheese" =~ "e+" assert "ee" == matcher[2] assert ["ee", "e"] == matcher[2..3] assert ["e", "ee"] == matcher[0, 2] assert ["e", "ee", "ee"] == matcher[0, 1..2] matcher = "cheese please" =~ /([^e]+)e+/ assert ["se", "s"] == matcher[1] assert [["se", "s"], [" ple", " pl"]] == matcher[1, 2] assert [["se", "s"], [" ple", " pl"]] == matcher[1 .. 2] assert [["chee", "ch"], [" ple", " pl"], ["ase", "as"]] == matcher[0, 2..3] // Matcher defines an iterator() method, so it can be used, for example, // with collect() and each(): matcher = "cheese please" =~ /([^e]+)e+/ matcher.each { println it } matcher.reset() assert matcher.collect { it } == [["chee", "ch"], ["se", "s"], [" ple", " pl"], ["ase", "as"]] // The semantics of the iterator were changed by Groovy 1.6. // In 1.5, each iteration would always return a string of the entire match, ignoring groups. // In 1.6, if the regex has any groups, it returns a list of Strings as shown above. // there is also regular expression aware iterator grep() assert ["foo", "moo"] == ["foo", "bar", "moo"].grep(~/.*oo$/) // which can be written also with findAll() method assert ["foo", "moo"] == ["foo", "bar", "moo"].findAll { it ==~ /.*oo/ } {code} Since a Matcher coerces to a boolean by calling its *find* method, the =\~ operator is consistent with the simple use of Perl's =\~ operator, when it appears as a predicate (in 'if', 'while', etc.). The "stricter-looking" ==\~ operator requires an exact match of the whole subject string. It returns a Boolean, not a Matcher. Regular expression support is imported from Java. Java's regular expression language and API is documented [here in the Pattern JavaDocs|http://download.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html]. h2. More Examples *Goal:* Capitalize words at the beginning of each line: {code} def before=''' apple orange y banana ''' def expected=''' Apple Orange Y Banana ''' assert expected == before.replaceAll(/(?m)^\w+/, { it[0].toUpperCase() + ((it.size() > 1) ? it[1..-1] : '') }) {code} *Goal:* Capitalize every word in a string: {code} assert "It Is A Beautiful Day!" == ("it is a beautiful day!".replaceAll(/\w+/, { it[0].toUpperCase() + ((it.size() > 1) ? it[1..-1] : '') })) {code} Add .toLowerCase() to make the rest of the words lowercase {code} assert "It Is A Very Beautiful Day!" == ("it is a VERY beautiful day!".replaceAll(/\w+/, { it[0].toUpperCase() + ((it.size() > 1) ? it[1..-1].toLowerCase() : '') })) {code} h2. Gotchas How to use backreferences with String.replaceAll() GStrings do *not* work as you'd expect: {code} def replaced = "abc".replaceAll(/(a)(b)(c)/, "$1$3") {code} Produces an error like the following: \[\] illegal string body character after dollar sign: solution: either escape a literal dollar sign "\$5" or bracket the value expression "$\{5}" @ line \[\] Solution: Use ' or / to delimit the replacement string: {code} def replaced = "abc".replaceAll(/(a)(b)(c)/, '$1$3') {code}</pre></td></tr></table>
Please type the word appearing in the picture.
Attachments
Labels
Location
Watch this page
< Edit
Preview >
Loading…
Save
Cancel
Next hint
search
attachments
weblink
advanced