Groovy String

타입 변환

“문자열”.toXXX() 메소드로 대부분의 형 변환이 가능하다.

def intNum = "123".toInteger()
def longNum = "1234567".toLong()