Examples: Improve string comparison.

git-svn-id: trunk@64505 -
This commit is contained in:
juha 2021-02-08 19:09:22 +00:00
parent f76b3198f9
commit 87ab5c4219
3 changed files with 13 additions and 11 deletions

View File

@ -5,7 +5,10 @@ unit Unit1;
interface
uses
SysUtils, Forms, StdCtrls, ExtCtrls, SynEdit, SynCompletion;
SysUtils,
Forms, StdCtrls, ExtCtrls,
LazStringUtils,
SynEdit, SynCompletion;
type
@ -65,7 +68,7 @@ procedure TForm1.DoExecute(Sender: TObject);
*)
procedure Add(s: String);
begin
if pos(lowercase(SynCompletion1.CurrentString), lowercase(s)) = 1 then
if LazStartsText(SynCompletion1.CurrentString, s) then
SynCompletion1.ItemList.Add(s);
end;
begin
@ -98,7 +101,7 @@ procedure TForm1.DoSearchPosition(var APosition: integer);
*)
procedure Add(s: String);
begin
if pos(lowercase(SynCompletion1.CurrentString), lowercase(s)) = 1 then
if LazStartsText(SynCompletion1.CurrentString, s) then
SynCompletion1.ItemList.Add(s);
end;
begin

View File

@ -1,15 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<ProjectOptions>
<Version Value="10"/>
<Version Value="12"/>
<General>
<Flags>
<SaveClosedFiles Value="False"/>
<SaveOnlyProjectUnits Value="True"/>
<LRSInOutputDirectory Value="False"/>
<CompatibilityMode Value="True"/>
</Flags>
<SessionStorage Value="InProjectDir"/>
<MainUnit Value="0"/>
<Title Value="lazconverter"/>
<ResourceType Value="res"/>
</General>
@ -23,13 +23,12 @@
<PublishOptions>
<Version Value="2"/>
<DestinationDirectory Value="/home/barko/tempo/out/"/>
<IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/>
<ExcludeFileFilter Value="*.(bak|ppu|ppw|o|so);*~;backup"/>
</PublishOptions>
<RunParams>
<local>
<FormatVersion Value="1"/>
</local>
<FormatVersion Value="2"/>
<Modes Count="1">
<Mode0 Name="default"/>
</Modes>
</RunParams>
<RequiredPackages Count="2">
<Item1>

View File

@ -226,7 +226,7 @@ begin
end;
if ok then
begin
if uppercase(ExtractFileExt(FileListBox1.Items[i]))='.LRS' then
if CompareFileExtQuick(FileListBox1.Items[i], 'lrs') = 0 then
begin
if ConvertMeLRS(tmp) then
begin