Widestring 搜索字串 |
尚未結案
|
TATSU
版主 發表:50 回覆:135 積分:62 註冊:2003-01-16 發送簡訊給我 |
|
timhuang
尊榮會員 發表:78 回覆:1815 積分:1608 註冊:2002-07-15 發送簡訊給我 |
Hi, 請參考這篇:
http://fundementals.sourceforge.net/cUnicode.html 引入兩個 function 即可使用:
function WidePMatch(const M: WideString; const P: PWideChar): Boolean; var I, L : Integer; Q, R : PWideChar; begin L := Length(M); if L = 0 then begin Result := False; exit; end; R := Pointer(M); Q := P; For I := 1 to L do if R^ <> Q^ then begin Result := False; exit; end else begin Inc(R); Inc(Q); end; Result := True; end; function WidePos(const F: WideString; const S: WideString; const StartIndex: Integer=1): Integer; var P : PWideChar; I, L : Integer; begin L := Length(S); if (StartIndex > L) or (StartIndex < 1) then begin Result := 0; exit; end; P := Pointer(S); Inc(P, StartIndex - 1); For I := StartIndex to L do if WidePMatch(F, P) then begin Result := I; exit; end else Inc(P); Result := 0; end; |
TATSU
版主 發表:50 回覆:135 積分:62 註冊:2003-01-16 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |