Contents

Views 8667 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
C로 프로그래밍 하다보면 문자열 때문에 문제가 많아지죠^^
문자열 제어.. 특히 문자열 토큰에 관해서는 힘든 부분이 많죠^^

아래 문자열 토큰에 관한 함수 하나 소개합니다.

void word_tok(char *dest, char *str, char key);

- dest 잘라진 문자열이 복사될 포인터
- str   원본 문자열
- key  기준이 되믄 문자 하나

str에서 key를 만나기 전까지의 문자열을 dest에 복사하고
str문자열에서 key전까지의 문자열은 제거 됩니다(공백도 제거)

아직 에러 검출에 관한 내용이 없어서 리턴 값은 없구여..
추가하면 다시 여기에 올리겠습니다^^

함수 예제)
void word_tok(char *dest, char *str, char key){
    char *word;
    int len=0, i;

    while(str[len]!=key && str[len]!='' && str[len]!='n') len++;
    word = (char *) malloc( sizeof(char)*(len +1) );

    for(i=0; i<len; i++) word[i] = str[i];
    word[i] = '';

    strcpy(dest, word);
    free(word);

    while(str[len]==' ') len++;
    strcpy(str, str+len);
}


?

  1. [c++] mfc로 만든 현재 디렉토리 읽어오기/세팅하기 (GetCurrentDirectory/SetCurrentDirectory)

    Date2013.04.23 CategoryDevelop Byhooni Views8525
    Read More
  2. [doc] 유료 방송 제어 시스템 (CAS) 발표자료

    Date2013.04.23 CategoryDevelop Byhooni Views8531
    Read More
  3. [js] 스크롤을 포함한 마우스 위치 찾는 코드

    Date2003.04.23 CategoryDevelop Byhooni Views8552
    Read More
  4. [c] 날짜로 요일 찾기..

    Date2003.04.23 CategoryDevelop Byhooni Views8557
    Read More
  5. [c++] WinSock2.0 채팅 프로그램 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views8567
    Read More
  6. [c] 베지어 곡선(Bézier curve) 알고리즘

    Date2013.04.23 CategoryDevelop Byhooni Views8575
    Read More
  7. [php] php+db 연동(odbc, mssql, mysql, sybase)

    Date2013.04.23 CategoryDevelop Byhooni Views8577
    Read More
  8. [c++] 쓰레드(Thread) 객체의 사용

    Date2013.04.23 CategoryDevelop Byhooni Views8615
    Read More
  9. [c] 아파치 모듈(Apache Module) 만들기

    Date2013.04.23 CategoryDevelop Byhooni Views8632
    Read More
  10. [c++] 압축프로그램(Lite Zip) 샘플

    Date2013.04.23 CategoryDevelop Byhooni Views8634
    Read More
  11. [java] 그래픽(도형,다각형..) 이동,확대,축소,회전에 대한 내용..

    Date2013.04.23 CategoryDevelop Byhooni Views8660
    Read More
  12. [c] 문자열 처리(문자열 자르기)

    Date2003.04.23 CategoryDevelop Byhooni Views8667
    Read More
Board Pagination Prev 1 ... 37 38 39 40 41 42 43 44 45 46 ... 71 Next
/ 71