unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation uses StringUnit, testStringUnit, testStringSearchUnit, testStringConvertUnit, uses_end; {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); begin //UnicodeString対応中 // testStrCount1; testStringCount; testInStr; //全テスト // testByteType; testCharToByteLen; testStringTextPartsCompare; testCompareStringWideAPI; testRangeAnsiPosForwardBackward; testRangeWidePosForwardBackward; testCopyIndex; testMapStringW; testConvertKataKana; testConvertNumeric; testConvertSymbol; testConvertAlphabet; testStrCount1; testCheckStrInTable; testCheckCharInTable; testChangeLineBreakes; testStringsReplace; testEncodeEscapeSequence; testDecodeEscapeSequence; testEncodeStringToCodeCsv; testStringsWordReplace; testTrimFirstChar; testTrimLastChar; testTrimChar; testOneTrimChar; testGetTagInfo; testGetTagText; testInStr; testWideCharByteLength; testCharIndexToByteIndex; testByteIndexToCharIndex; testCharLengthToByteLength; testIncludeBothEndsStr; testExcludeBothEndsStr; testSearch; testStringConvert; end; end.