본문 바로가기

분류 전체보기321

SQLD - 정규 표현식 문자열의 규칙을 표현하는 검색 패턴 문자열 검색과 치환에 주로 사용 Posix 연산자 기본연산자 . : 모든 문자와 일치 | : or, 대체 문자를 구분 먼저 들어온 문자를 리턴 ex. Regexp_substr('aa', 'a|aa') => 'a' 리턴 검색 패턴과 시작과 끝 지정 \ : 백슬래시, 다음 문자를 일반 문자로 취급 (이스케이프문자) ^ : 캐럿, 문자열의 시작 $ : 문자열의 끝 수량사 선행 표현식의 일치 횟수를 지정 ? : 0회 또는 1회 일치 * : 0회 또는 그 이상의 횟수로 일치 + : 1회 또는 그 이상의 횟수로 일치 Greedy 패턴을 최대로 일치 시킴 {m} : m회 일치 {m,} : m회 최소 일치 {,m} : m회 최대 일치 {m,n} : 최소 m회, 최대 n회 일치 () .. 2023. 8. 30.
htmx 살펴보기 https://youtu.be/vZ_oT0p113I?si=qu-FdjQycHP7kf40 html ? htmx? 위 강의를 보며 공식문서를 살펴보고 정리! 공식은 아니지만 이번에 깃헙 어쩌구에서 후원금까지 받은 라이브러리라고 한다. 공식 사이트 https://htmx.org/ htmx - high power tools for html htmx.org 소개 htmx gives you access to AJAX, CSS Transitions, WebSockets and Server Sent Events directly in HTML, using attributes, so you can build modern user interfaces with the simplicity and power of hypertex.. 2023. 8. 29.
Dicom 파일 핸들링 라이브러리 (feat. js) dicomParser https://cornerstonejs.github.io/dicomParser/examples/index.html https://cornerstonejs.github.io/dicomParser/examples/index.html cornerstonejs.github.io import dicomParser from "dicom-parser"; 포맷명을 ^ 를 구분자로 구분해준다. // 구분해준 배열의 0, 1번째에 존재하는 것으로 환자의 이름을 출력해줄 수 있는 함수 const formatName = (string) => { let name = string.split("^"); return `${name[0]}_${name[1]}`; }; dicomParser.parseDicom() .. 2023. 8. 28.
리액트 Chart 라이브러리 자바스크립트 기반 차트 라이브러리 1. Chartjs Chart.js Chart.js Simple yet flexible JavaScript charting library for the modern web www.chartjs.org 2. C3.js C3.js | D3-based reusable chart library C3.js | D3-based reusable chart library Comfortable C3 makes it easy to generate D3-based charts by wrapping the code required to construct the entire chart. We don't need to write D3 code any more. Customizable C3 giv.. 2023. 8. 26.