Contents

Views 13502 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
#include<stdio.h>
#include<string.h>

int main(){
    char string[] = "abc de,fghi\tjklmn\nopqrstuv";
    char *token;
    
    /* 공백,콤마,탭,개행 이 있으면 단어구분 */
    char delimit[] = " ,\t\n";

    token = strtok(string, delimit);

    while(token!=NULL){
        /* 출력 */
        printf("%s\n", token);

        /* 다음단어 */
        token = strtok(NULL, delimit);
    }
}


?

List of Articles
No. Category Subject Author Date Views
325 System/OS [linux] 이기종간의 파일 공유(Samba) hooni 2003.04.23 15952
324 Develop [linux] 임베디드 리눅스 (embedded linux) file hooni 2013.04.23 8262
323 System/OS [linux] 종료와 종료코드 확인(환경변수에서) hooni 2003.04.23 16903
322 System/OS [linux] 처음 설치부터 APM 설치까지 (업데이트 할 것) hooni 2013.04.23 39454
321 System/OS [linux] 초간단 Postfix, Covecot, SSL/TLS (SMTP) file hooni 2017.12.11 12347
320 System/OS [linux] 초간단 SquirrelMail 설치/설정 (다람쥐 메일) hooni 2017.12.11 6064
319 System/OS [linux] 최소한의 커널 설정(커널설치 전체과정) hooni 2003.04.23 18299
318 System/OS [linux] 커널 컴파일, 설정 hooni 2003.04.23 18626
317 System/OS [linux] 콘솔 기본언어 설정 방법 hooni 2013.04.23 13849
316 System/OS [linux] 콘솔/Xwindow 에서 PC스피커 소리 없애기 hooni 2003.04.23 17504
315 System/OS [linux] 터미널에서 문자 깨질 때 설정 ㅋㅋ hooni 2003.04.23 14611
314 System/OS [linux] 텔넷, FTP 텍스트 모드에서 사용 hooni 2003.04.23 12705
Board Pagination Prev 1 ... 67 68 69 70 71 72 73 74 75 76 ... 99 Next
/ 99