function carNumCheck(str) { if (/^\d{2}[가-힣]\d{4}/.exec(str) !== null && str.length === 7) { return true; } if (/^\d{3}[가-힣]\d{4}/.exec(str) !== null && str.length === 8) { return true; } return false } true를 받으면 성공 false를 받으면 실패 -------------------------------------------- /^\d{2}[가-힣]\d{4}/ /^ - 시작을 알림 \d{2}[가-힣]\d{4}/ \d{2} - 2개동안 d를 허용 (d는 0~9 숫자) [가-힣]\d{4}/ [가-힣] - 가 부터 힣까지 허용 \d{4}/ \d{4}..
구글링 해보니까 모듈 있던데 이런 단순한 기능 쓰려고 모듈 다운받는건 내키지 않아서 직접 만들었다. 저번에 안드로이드 네이티브에서도 만들었었는데... js로 react native에서 또 만드네..... 코드 전문 하단.. 파라미터 값으려 전체 텍스트와 색칠할 텍스트를 받는다. import React from 'react'; import { Text } from 'react-native'; import PropTypes from 'prop-types'; export default SpannableText = ({ fullText, piece }) => { let text = fullText; let cText = piece; let textLength = cText.length; let view = []..
1. adb 실행 안될때 (adb not working) platform-tools에 들어가서 adb를 입력해서 not found가 나타날 때 platform-tools에서 "./adb" 를 실행해보자. 이때 adb가 정상적으로 동작할 것이다. 2. .bash_profile에 적용했는데도 안될 경우 (not starting .bash_profile) 안드로이드 adb 환경변수 경로 - export PATH=$PATH:/Users/{name}/Library/Android/sdk/platform-tools/ terminal을 실행했을때 본인 계정이름 옆에 ㅡ -zsh가 있을 경우에만 할것. .bash_profile이 있는 계정폴더에서 ".zshrc"를 만든다. *만일 zshrc파일이 존재한다면 만들지 말것 ..
- Total
- Today
- Yesterday
- 클래스형 코드
- not starting .bash_profile
- 안드로이드
- https://hwan-shell.tistory.com/244
- 구글 맵 선그리기
- spannableText
- not found adb
- insert
- ubunut 설치 link
- 차번호 정규표현식
- MongoDB
- 구글 맵 경로 그리기
- 자바
- nosql
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- 명령어
- 데이터베이스
- React Native
- 차번호 정규식
- Android
- ubunut android
- adb 환경변수
- 귀찮아;;
- 함수형 코드
- mac android
- mongo db
- react native state
- text 부분 색 칠하기
- rn
- not working adb
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |