일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- javascript
- PostgreSQL
- 프라하
- 방콕
- terraform
- 釜つる
- 태국
- documentdb
- vba
- duckdb
- 三井住友カード
- 체코
- 카마츠루
- Python
- typescript
- 아타미
- codebuild
- JenkinsFile
- local
- CSV
- 메르페이
- PayPay
- pyenv
- 熱海
- react.js
- 뮌헨
- 페이페이
- Selenium
- 미츠이 스미토모
- node.js
- Today
- Total
목록콤마 (2)
도쿄사는 외노자
Glue Crawler로 대충 아래와 같은 데이터를 읽어와야 했다. 대충 Crawler를 만들어 돌려 보니, Athena에서 이렇게 표시되더라. 쌍따옴표 안의 자릿수 콤마를 그냥 무식하게 나눠버린 것. 일단 해결책은 아래와 같다. https://docs.aws.amazon.com/ko_kr/athena/latest/ug/glue-best-practices.html#schema-csv-quotes Athena와 AWS Glue를 함께 사용하는 모범 사례 - Amazon Athena Athena와 AWS Glue를 함께 사용하는 모범 사례 AWS Glue 데이터 카탈로그와 함께 Athena를 사용하면 AWS Glue를 사용하여 Athena에서 쿼리할 데이터베이스와 테이블(스키마)을 만들거나, Athena를 ..
1. 콤마 찍기123function numberWithCommas(x) { return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");}Colored by Color Scriptercs또는123function comma(str) { return str.toString().replace(/(\d)(?=(?:\d{3})+(?!\d))/g, '$1,');}Colored by Color Scriptercs 2. 콤마풀기123function uncomma(str) { return str.toString().replace(/[^\d]+/g, '');}Colored by Color Scriptercs 3. input box에서 사용자 입력시 바로 콤마를 찍어주기12345f..