Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- i18n
- Postfix
- 문자열자르기
- 확장자
- 한글 깨짐
- TextBox
- centos
- 일괄변경
- 천단위
- yum
- 부모창
- docker
- ubuntu
- Selectbox
- replace
- Eclipse
- SVN
- JavaScript
- RabbitMQ
- Python
- MySQL
- TPL
- install
- smarty
- random
- Oracle
- php
- jQuery
- mariadb
Archives
- Today
- Total
wilson's story
숫자 단위별로 ',' 찍기 본문
반응형
<%@ page import="java.text.*" %>
<%
NumberFormat nFormat = NumberFormat.getNumberInstance();
int num = 100000;
%>
<%=nFormat.format(num)%>
결과
100,000
반응형