Contents

Views 9487 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] OpenGL 시어핀스키 가스킷(p.73 - 첫시간)

    Date2003.04.23 CategoryDevelop Byhooni Views9795
    Read More
  2. [c++] 바탕화면 테두리에 자석처럼 붙는 스냅효과..

    Date2013.04.23 CategoryDevelop Byhooni Views9813
    Read More
  3. [asp] 문자열 넘겨받기 (get,post)

    Date2013.04.23 CategoryDevelop Byhooni Views9817
    Read More
  4. [c++] 윈도우 프로세스뷰어 분석.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views9817
    Read More
  5. [c++] mfc 이용한 트레이아이콘(TrayIcon) 클래스 예제 프로젝트

    Date2013.04.23 CategoryDevelop Byhooni Views9819
    Read More
  6. [js] 쿠키(cookie)에 대한 설명과 예제..

    Date2003.04.23 CategoryDevelop Byhooni Views9838
    Read More
  7. [asem] CMOS 패스워드 알아내기.. 소스..

    Date2003.04.23 CategoryDevelop Byhooni Views9849
    Read More
  8. [c] 오류체크(CRC 체크 ) 소스

    Date2013.04.23 CategoryDevelop Byhooni Views9861
    Read More
  9. [c] 날짜로 요일 찾기..

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

    Date2013.04.23 CategoryDevelop Byhooni Views9886
    Read More
  11. [js] 객체 머지..

    Date2013.12.17 CategoryDevelop Byhooni Views9911
    Read More
  12. [c++] mfc 윈도우에서 ODBC 사용하여 MDB파일 읽기.. ㅋㅋ

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