Contents

조회 수 8637 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
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. [js] 한글문서로 된 259가지 자바스크립트 예제파일

    Date2013.04.23 CategoryDevelop Byhooni Views6764
    Read More
  2. 나중에 해봐야지.. libconv 설치.. ㅡ,.ㅡ;

    Date2013.04.23 CategorySystem/OS Byhooni Views19284
    Read More
  3. [js] 자바스크립트 escape()를 PHP로 받기

    Date2013.04.23 CategoryDevelop Byhooni Views5990
    Read More
  4. [php] 피코맥스용 검색엔진 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views6781
    Read More
  5. [c][java] 그래픽(graphic)관련 자료와 샘플코드..

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

    Date2013.04.23 CategoryDevelop Byhooni Views8636
    Read More
  7. [doc] Equation Solving에 대한 발표자료..

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

    Date2013.04.23 CategoryDevelop Byhooni Views8557
    Read More
  9. [c] 플러드 필링 (flood filling) 알고리즘..

    Date2013.04.23 CategoryDevelop Byhooni Views7319
    Read More
  10. [c++] 헤더, 소스 파일 분리해서 작성해본 테스트 소스

    Date2013.04.23 CategoryDevelop Byhooni Views6688
    Read More
  11. [c] 더블(이중) 연결리스트 예제..

    Date2013.04.23 CategoryDevelop Byhooni Views7470
    Read More
  12. [c][java] 주사선 채우기 알고리즘(scan line filling algorithm) 구현

    Date2013.04.23 CategoryDevelop Byhooni Views8968
    Read More
Board Pagination Prev 1 ... 57 58 59 60 61 62 63 64 65 66 ... 98 Next
/ 98