Q&A

  • 특정문자 삭제하기는..?
파일을 읽고 쓰는 함수는 있는데
특정문자를 찾아서 원하는 문자로 바꾸거나...삭제하는 함수는 없는거 같아서 질문올립니다.

예를 들면 test.txt 화일 안에 test라는 문자를 찾아서 해당 라인을 삭제하거나 TEMP라는 문자로 바꾸려면
어떻게 해야 하죠..?
1  COMMENTS
  • Profile
    박성훈 2006.01.20 02:37


    델파이 도움말에서 퍼왔습니다.

    StringReplace Function

    Returns a string with occurrences of one substring replaced by another substring.

    Unit

    SysUtils

    Category

    string handling routines

    type
      TReplaceFlags = set of (rfReplaceAll, rfIgnoreCase);
    function StringReplace(const S, OldPattern, NewPattern: string; Flags: TReplaceFlags): string;

    Description

    StringReplace replaces occurrences of the substring specified by OldPattern with the substring specified by NewPattern. StringReplace assumes that the source string, specified by S, may contain Multibyte characters.

    If the Flags parameter does not include rfReplaceAll, StringReplace only replaces the first occurrence of OldPattern in S. Otherwise, all instances of OldPattern are replaced by NewPattern.

    If the Flags parameter includes rfIgnoreCase, The comparison operation is case insensitive.