Forum Discussion

_ivanovich_'s avatar
_ivanovich_
Frequent Contributor
5 years ago
Solved

How to convert array to intger with groovy ?

Hi,

i have a json response where there is a value like :

slurperresponse.data.debt[0].totalValue = [50]

if i assert like this:

assert slurperresponse.data.debt[0].totalValue = 50

it doesn't accept because [50] is not int

How can i convert [50] into 50 ?

Thank you

  • Found solution with this:

    int b = a.collect { "$it" }.join( '' ) as int 

    Sorry for spam.

3 Replies

  • _ivanovich_'s avatar
    _ivanovich_
    Frequent Contributor

    Found solution with this:

    int b = a.collect { "$it" }.join( '' ) as int 

    Sorry for spam.

    • _ivanovich_'s avatar
      _ivanovich_
      Frequent Contributor

      json sample:

      {
      "data" : [
      {
      "Debt" : {
      "Id" : 2980,
      "Name" : "MHN",
      "Rate" : 1.8,
      "market" : "AH"
      "block" : true,
      "aYield" : 2.3,
      "aSYield" : 2.7,
      "Qty" : 20,
      "totalValue" : 1999.47
      }
      ]
      },