Contents

조회 수 8740 댓글 0
Atachment
첨부 '1'
?

단축키

Prev이전 문서

Next다음 문서

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

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
소스코드(c/c++ 등)를 웹브라우저에서 볼 수 있도록 html 로 변환해줌~
아래 처럼 주요 변환 코드는 단순히 문자열 교환이고 특수문자와 줄바꿈 등에 대한 내용이다.

while((ch=fgetc(source)) !=EOF){
    switch(ch){
        case '"' :
            fprintf(dest, """);
            break; 
        case '&' :
            fprintf(dest, "&");
            break;
        case '<' :
            fprintf(dest, "&lt;");
            break;
        case '>' :
            fprintf(dest, "&gt;"); 
            break;
        case ' ' :
            fprintf(dest, "&nbsp;");
            break;
        case '\t' :
            fprintf(dest, "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
            break;
        case '\n' :
            fprintf(dest, "<br>");
            break;
        default :
            fprintf(dest, "%c", ch);
            break;
    }
}

?

  1. [c] 베이지언(Bayesian) 패턴인식 과제 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views8016
    Read More
  2. [js] php의 number_format() 함수와 같은.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views8266
    Read More
  3. [c] 숫자 맞추는 게임..

    Date2013.04.23 CategoryDevelop Byhooni Views8033
    Read More
  4. [c] 구조체 배열 예제 (학생 성적 계산)

    Date2013.04.23 CategoryDevelop Byhooni Views8534
    Read More
  5. [c] 프로그램 코드(c/c++)를 html 파일로 변환

    Date2013.04.23 CategoryDevelop Byhooni Views8740
    Read More
  6. [c] 전위 표기법으로 연산 예제..

    Date2013.04.23 CategoryDevelop Byhooni Views10404
    Read More
  7. [doc] 정보보호학술대회 논문지 ㅋㅋ

    Date2013.04.23 CategoryPPT Byhooni Views14082
    Read More
  8. [ajax] 샘플 코드와 한글처리에 대한 간단한 설명

    Date2013.04.23 CategoryDevelop Byhooni Views7724
    Read More
  9. GSM에서 음성이 실리는 과정 요약..

    Date2013.04.23 CategoryEtc Byhooni Views18627
    Read More
  10. [js] 폼(form) 전송시 중복 클릭 방지 간단한 구문

    Date2013.04.23 CategoryDevelop Byhooni Views10113
    Read More
  11. [js] 사진첩에 쓸 내용 - 마우스 오버로 바꾸기

    Date2013.04.23 CategoryDevelop Byhooni Views7435
    Read More
  12. [sql] 간단한 통계 서브쿼리 예제..

    Date2013.04.23 CategoryDatabase Byhooni Views16423
    Read More
Board Pagination Prev 1 ... 61 62 63 64 65 66 67 68 69 70 ... 99 Next
/ 99