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 |
Tags
- replace
- random
- TextBox
- yum
- Oracle
- 확장자
- JavaScript
- i18n
- 한글 깨짐
- jQuery
- 부모창
- ubuntu
- RabbitMQ
- 문자열자르기
- Eclipse
- Selectbox
- SVN
- docker
- php
- MySQL
- 일괄변경
- TPL
- centos
- Python
- install
- Postfix
- mariadb
- 천단위
- smarty
Archives
- Today
- Total
wilson's story
숫자 단위별로 ',' 찍기 본문
반응형
<%@ page import="java.text.*" %>
<%
NumberFormat nFormat = NumberFormat.getNumberInstance();
int num = 100000;
%>
<%=nFormat.format(num)%>
결과
100,000
반응형