Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- Font
- 한 번만 실행
- ClickOnce
- 데이터 전달
- M8200
- plcrashreporter
- C/C++
- self-signed ssl
- net
- JavaScript
- 와이브로
- crashlog
- docker
- protobuf-c
- 기념일관리
- API
- php
- EUC-KR
- phpmailer
- 크래시로그
- .net
- Antialiasing
- 자바스크립트
- 설치제거
- VS2008
- C#
- MFC
- PDA
- GDI
- 블루투스 헤드셋
Archives
- Today
- Total
목록2009/07/16 (1)
~☆~ 우하하!!~ 개발블로그
[MFC] 특정 문자로 끝나는지 확인하는 방법
BOOL IsEndWithChar(CString strCheckString, char endChar) { return (strCheckString.ReverseFind(endChar) == strCheckString.GetLength() - 1); } CString str = "C:\\Temp\\"; BOOL bEndOK = IsEndWithChar(str, '\\'); // TRUE CString str = "C:\\Temp"; BOOK bEndNot = IsEndWithChar(str, '\\'); // FALSE
MFC
2009. 7. 16. 11:14