atoi 함수
string -> 정수(fixnum) 변환
atof 함수
string -> 실수(flonum) 변환
a = "1"
a = atoi(a)
println(a)
println(type(a))
b = list("1" "2" "3")
(foreach (x) b
println(atoi(x))
)
c = "0.25"
c = atof(c)
println(c)
println(type(c))
정수,실수 -> 문자열 변환 아래 참고
https://ansan-survivor.tistory.com/370
'Cadence SKILL language > Common SKILL (LISP)' 카테고리의 다른 글
[Cadence SKILL / LISP] 문자열(string) 변수 출력 format(포맷), data type(데이터 타입) 확인 (0) | 2021.03.30 |
---|---|
[Cadence SKILL / LISP] 문자열 대문자 소문자로 변경시키기 (2) | 2021.03.19 |
[Cadence SKILL / LISP] 문자열 합치기 (joint String), 변수 문자열 합치기 (0) | 2021.03.11 |
[Cadence SKILL / LISP] 연산자, 수학 함수, 비트 연산, 판독 함수 (0) | 2020.11.24 |
[Cadence SKILL / LISP] Cadence SKILL 숫자조작하기: 올림, 반올림, 내림, 소수점 자르기 (0) | 2020.11.20 |