decimal
-
apex 숫자 원화 표시하는 방법 - ( apex How to display numbers ₩0,000,000 )Apex 2024. 4. 5. 16:00
1. setScale(0).format(); 숫자 -> 원화표시 10000000 -> ₩ 10,000,000 Decimal numberA = 10000000; String stringA = '₩' + numberA.setScale(0).format(); 2. Decimal.valueOf([원화형식StringValue].replaceAll(...)); 원화 -> 숫자표시 ₩ 10,000,000 -> 10000000 String stringA = '₩10,000,000'; Decimal numberA = Decimal.valueOf(stringA.replaceAll('[^0-9]', '')); 3. 예시 코드 원화표시된 기존 금액 ₩ 10,000,000에 청구금액(BillingAmount__c)을 더하여 원..