일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- java
- JS
- Windows
- 하모니카
- postgres
- script
- 리눅스
- 스크립트
- hamonikr
- 3.0
- 윈도우
- 자바
- 아틀라시안
- DB
- 노드
- ubuntu
- Atlassian
- 우분투
- 데이터베이스
- Linux
- 자바스크립트
- install
- 파이썬
- python
- node
- DATABASE
- javascript
- PostgreSQL
- 설정
- 설치
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
텍스트 중에 특정 문자가 포함되어 있는지 찾기 본문
반응형
1. 특정 문자열 포함 여부 확인
str='LukeHan LukeHan LukeHan'
if 'LukeHan' in String:
print str
2. 특정 문자열 포함된 위치 확인
str='LukeHan test message'
print str.find('test')
반응형
Comments