조회 수 8667 추천 수 0 댓글 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. [c] 문자열 컨트롤 함수로 만든 프로그램들..

    Date2003.04.23 CategoryDevelop Byhooni Views6803
    Read More
  2. [c] 문자열 치환해주는 str_replace() 함수

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

    Date2003.04.23 CategoryDevelop Byhooni Views8667
    Read More
  4. [c] 문자열 처리 관련 함수들 설명

    Date2003.04.23 CategoryDevelop Byhooni Views8017
    Read More
  5. [c] 문자열 정렬 함수 qsort()

    Date2003.04.23 CategoryDevelop Byhooni Views8277
    Read More
  6. [c] 문자열 자르는 함수(strtok) 예제

    Date2013.04.23 CategoryDevelop Byhooni Views12228
    Read More
  7. [c] 문자열 라이브러리 최신버전

    Date2003.04.23 CategoryDevelop Byhooni Views7225
    Read More
  8. [c] 문자열 뒤집기 초간단 샘플 코드 ㅎㅎ

    Date2013.04.23 CategoryDevelop Byhooni Views7136
    Read More
  9. [c] 문자열 뒤집기 (문자열 거꾸로 출력하는 간단소스)

    Date2003.04.23 CategoryDevelop Byhooni Views10061
    Read More
  10. [c] 문자열 str_shift 예제..

    Date2013.04.23 CategoryDevelop Byhooni Views6862
    Read More
  11. [c] 무선 Radius Server 자료..

    Date2013.04.23 CategoryDevelop Byhooni Views7284
    Read More
  12. [c] 메시지큐(Message Queue) 설명.. (joinc)

    Date2013.04.23 CategoryDevelop Byhooni Views14310
    Read More
  13. [c] 메세지 프로그램 (Server - Agent - Client)

    Date2013.04.23 CategoryDevelop Byhooni Views6481
    Read More
  14. [c] 맵서치인 듯(옛날 컴에서 찾은 자료)

    Date2013.04.23 CategoryDevelop Byhooni Views6920
    Read More
  15. [c] 마우스 따라다니는 고양이 - 네코95 (WinAPI)

    Date2013.04.23 CategoryDevelop Byhooni Views7968
    Read More
  16. [c] 로또(Lotto) 번호 생성기

    Date2013.04.23 CategoryDevelop Byhooni Views7193
    Read More
Board Pagination Prev 1 ... 34 35 36 37 38 ... 53 Next
/ 53