Tagged Questions
Groovy String class
9
votes
5answers
208 views
How to avoid saying “gstring”? [closed]
I am picking up Groovy. The language is fine. But I have a non-technical problem. One of the classes is called GString. In some context, it can be misleading. And mentioning it is not very appropriate ...
4
votes
5answers
968 views
Unsafe use of user-supplied GString:s in Groovy/Grails
The GString concept in Groovy is pretty powerful (see http://groovy.codehaus.org/Strings+and+GString).
GStrings let you do things like:
world = "World"
println "Hello ${world}"
# Output: Hello World
...
2
votes
5answers
171 views
GStrings in Python
Groovy has a concept of GStrings. I can write code like this:
def greeting = 'Hello World'
println """This is my first program ${greeting}"""
I can access the value of a variable from within the ...
1
vote
2answers
101 views
Grails accessing nested fields using gstrings
I am trying to access a nested field using gstring but it throws exception groovy.lang.MissingPropertyException
I have two classes
Class Person{
Address address
}
Class Address{
String city
}
...
1
vote
2answers
128 views
Escape dot from GString
I would like to learn how to escape dot in GString so groovy (1.8) does not treat it as a part of an variable inside sql.execute. I have the following code:
Map<String, String> dbSettings = ...
1
vote
2answers
130 views
Get variable value for its name in Groovy
I have the following variables defined:
def VAL1 = 'foo'
def VAL2 = 'bar'
def s2 = 'hello ${VAL1}, please have a ${VAL2}'
What is the easiest way to make this substitution work?
How could I build ...
1
vote
2answers
86 views
Dynamic GString creation doesn't not work as I expect
I have the following code:
def test( name ) {
s = ['$','{','n','a','m','e','}'].join()
println s instanceof String // is true, s is not a gstring
// create a GString
g = ...
1
vote
1answer
208 views
Groovy GString in Sql.execute - text variables are not surrounded by ' and query fails
I have the following problem, when I pass GString to SQL.executeInsert, the text variables are not automatically souranded by ' so the insert query failes:
String value4fa = "I would like to get ...
1
vote
1answer
62 views
Why a concatenation of gstrings returned from a function is an empty string - Groovy 1.7.4
I have the following code:
public class TestGr
{
static String aaa = "wwww";
public static void main(args)
{
println "["+getAAA()+"]";
println "[" + getBBB() +"]";
}
static String ...
0
votes
2answers
39 views
runtime invocation of method with arguments in groovy
For simplicity let's say I have code similar to this:
def testMethod(String txt) {
return txt;
}
public String evaluate(String expression) {
//String result = "${testMethod('asdasdasd')}";
...
0
votes
3answers
161 views
Create String list in Groovy
The following code in Groovy adds GStrings to the list:
List<String> args = [ 'cmd', "-Dopt=${value}" ]
When I create a ProcessBuilder with this list, I get a ClassCastException. What's a ...
0
votes
2answers
180 views
Passing variable to be evaluated in groovy gstring
I am wondering if I can pass variable to be evaluated as String inside gstring evaluation.
simplest example will be some thing like
def var ='person.lName'
def value = "${var}"
println(value)
I ...
0
votes
1answer
106 views
How to avoid evaluating an GString
I'm working on extending a legacy script system using groovy. The source scripts are "java-like", so it mostly parses as a groovy script with a little pre-processing.
I'm using invokeMethod() and ...
0
votes
1answer
116 views
How to execute functions in gstring database queries for groovy
I am hoping to use Groovy more as a functional language than I can with Java, but one area that seems to be a problem is when I call to a stored procedure, as I am passing perhaps 40 parameters in a ...
0
votes
2answers
168 views
Why doesn't .collect() work in the following GString?
This works as expected in a GSP-page:
<td>${Foo.findAllByBar(bar)}</td>
But when adding a collect statement the code breaks ..
<td>${Foo.findAllByBar(bar).collect { it.name ...
0
votes
5answers
534 views
Groovy GString issues
All!
I'm want use $ macro in groovy GString. When i'm wrote this code
['cdata','tdata'].each {
def sql = "select * from $it_1"
}
i'm get error unknown property $it_
ok, i'm rewrite it
...
0
votes
2answers
539 views
Replace GString tags in a file
i've got a word document saved in xml format. In this document, there are some GString Tag like $name.
In my groovy code, i load the xml file to replace this GString tag like this:
def file = ...