티스토리 뷰
728x90
반응형
function formatProductCode(input) {
// Remove any non-alphanumeric characters from the input value
let productCode = input.value.replace(/[^a-zA-Z0-9]/g, '');
// Format the product code as desired (e.g., jh-h-09-09)
let formattedProductCode = productCode.replace(/([^A-Za-z]{2})([^A-Za-z])(\d{1,2})(\d{1,2})/, (match, p1, p2, p3, p4) => p1.toUpperCase() + '-' + p2.toUpperCase() + '-' + p3 + '-' + p4);
// Update the input value with the formatted product code
input.value = formattedProductCode;
}
728x90
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- .submit()
- 상품 등록
- 메이븐(maven)
- MainActor
- nl2br
- java-개발 환경 설정하기
- 스프링 시큐리티(spring security)-http basic 인증
- jstl(java standard tag library)-core
- await
- 표현 언어(expression language)
- 스프링 시큐리티(spring security)
- 진수 변환
- jsp 오픈 소스
- 특정 문자를 기준으로 자르기
- REST API
- 문자 자르기
- 스프링 프레임워크(spring framewordk)
- React
- java.sql
- 제품 등록
- 람다식(lambda expression)
- 인텔리제이(intellij)
- error-java
- System.Diagnostics
- jstl(java standard tag library)
- system.io
- In App Purchase
- java 키워드 정리
- java web-mvc
- 스프링 프레임워크(spring framework)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함