How to find if key exist in map with Groovy

4 Answers

0 votes
def map = [name: "Groovy", age: 13, country: "United States", city: "New York"]
 
def f = map.find{it.key  == "name"}?.value
println f

f = map.find{it.key == "abc"}?.value
println f
 
  
  
  
/*
run:
  
Groovy
null
  
*/

 



answered Oct 5, 2020 by avibootz
0 votes
def map = [name: "Groovy", age: 13, country: "United States", city: "New York"]
 
def key = "name"

if(map[key]) {
    println map[key]
}
 
  
  
  
/*
run:
  
Groovy
  
*/

 



answered Oct 5, 2020 by avibootz
0 votes
def map = [name: "Groovy", age: 13, country: "United States", city: "New York"]
 
def key = "name"
def f = map[key] ?: "not found"
println f

key = "abc"
f = map[key] ?: "not found"
println f
 
  
  
  
/*
run:
  
Groovy
not found
  
*/

 



answered Oct 5, 2020 by avibootz
0 votes
def map = [name: "Groovy", age: 13, country: "United States", city: "New York"]

println(map.containsKey("name")); 

println(map.containsKey("abc")); 
 

   
   
/*
run:
   
true
false
   
*/

 



answered Oct 5, 2020 by avibootz

Related questions

1 answer 251 views
2 answers 293 views
1 answer 286 views
1 answer 257 views
2 answers 468 views
2 answers 362 views
362 views asked Oct 4, 2020 by avibootz
1 answer 287 views
...