Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Type Conversion

FunctionDescriptionExampleResult
정수변환(x)Convert to integer정수변환("42")42
실수변환(x)Convert to float실수변환(42)42.0
길이(s)String length길이("한글")2

Conversion Rules

정수변환(3.14)      // 3 (truncates)
정수변환("42")      // 42 (parse string)
정수변환(참)        // 1
정수변환(거짓)      // 0

실수변환(42)        // 42.0
실수변환("3.14")    // 3.14