1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
|
unit JcfStringUtils;
{(*}
(*------------------------------------------------------------------------------
Delphi Code formatter source code
The Original Code is JcfStringUtils, released October 2008.
The Initial Developer of the Original Code is Paul Ishenin
Portions created by Paul Ishenin are Copyright (C) 1999-2008 Paul Ishenin
All Rights Reserved.
Contributor(s): Anthony Steele.
The contents of this file are subject to the Mozilla Public License Version 1.1
(the "License"). you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.mozilla.org/NPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied.
See the License for the specific language governing rights and limitations
under the License.
Alternatively, the contents of this file may be used under the terms of
the GNU General Public License Version 2 or later (the "GPL")
See http://www.gnu.org/licenses/gpl.html
------------------------------------------------------------------------------*)
{*)}
{$I JcfGlobal.inc}
{
This unit contains string utility code
For use when the JCL string functions are not avaialable
}
interface
uses
SysUtils, Classes;
const
NativeNull = Char(#0);
NativeSoh = Char(#1);
NativeStx = Char(#2);
NativeEtx = Char(#3);
NativeEot = Char(#4);
NativeEnq = Char(#5);
NativeAck = Char(#6);
NativeBell = Char(#7);
NativeBackspace = Char(#8);
NativeTab = Char(#9);
NativeLineFeed = AnsiChar(#10);
NativeVerticalTab = Char(#11);
NativeFormFeed = Char(#12);
NativeCarriageReturn = AnsiChar(#13);
NativeCrLf = AnsiString(#13#10);
NativeSo = Char(#14);
NativeSi = Char(#15);
NativeDle = Char(#16);
NativeDc1 = Char(#17);
NativeDc2 = Char(#18);
NativeDc3 = Char(#19);
NativeDc4 = Char(#20);
NativeNak = Char(#21);
NativeSyn = Char(#22);
NativeEtb = Char(#23);
NativeCan = Char(#24);
NativeEm = Char(#25);
NativeEndOfFile = Char(#26);
NativeEscape = Char(#27);
NativeFs = Char(#28);
NativeGs = Char(#29);
NativeRs = Char(#30);
NativeUs = Char(#31);
NativeSpace = Char(' ');
NativeComma = Char(',');
NativeBackslash = Char('\');
NativeForwardSlash = Char('/');
{$IFDEF MSWINDOWS}
NativeLineBreak = NativeCrLf;
PathSeparator = '\';
{$ENDIF MSWINDOWS}
{$IFDEF UNIX}
NativeLineBreak = NativeLineFeed;
PathSeparator = '/';
{$ENDIF UNIX}
DirDelimiter = PathSeparator;
NativeHexDigits = ['0'..'9', 'A'..'F', 'a'..'f'];
NativeWhiteSpace = [NativeTab, NativeLineFeed, NativeVerticalTab,
NativeFormFeed, NativeCarriageReturn, NativeSpace];
NativeDoubleQuote = Char('"');
NativeSingleQuote = Char('''');
{$IFNDEF DELPHI12}
{$IFNDEF DELPHI14}
function CharInSet(const C: Char; const testSet: TSysCharSet): Boolean;
{$ENDIF}
{$ENDIF}
function CharIsAlpha(const C: Char): Boolean;
function CharIsAlphaNum(const C: Char): Boolean;
function CharIsWordChar(const c: Char): Boolean;
function CharIsControl(const C: Char): Boolean;
function CharIsDigit(const C: Char): Boolean;
function CharIsReturn(const C: Char): Boolean;
function CharIsWhiteSpace(const C: Char): Boolean;
function CharIsWhiteSpaceNoReturn(const c: Char): boolean;
function CharIsPuncChar(const c: Char): boolean;
function StrIsAlpha(const S: string): Boolean;
function StrIsAlphaNum(const S: string): Boolean;
function CharIsHexDigitDot(const c: Char): Boolean;
function CharIsBinDigit(const c: Char): Boolean;
function StrTrimQuotes(const S: string): string;
function StrAfter(const SubStr, S: string): string;
function StrBefore(const SubStr, S: string): string;
function StrChopRight(const S: string; N: Integer): string;
function StrLastPos(const SubStr, S: string): Integer;
function StrIPos(const SubStr, S: string): integer;
function StrLeft(const S: string; Count: Integer): string;
function StrRestOf(const S: string; N: Integer ): string;
function StrRight(const S: string; Count: Integer): string;
function StrDoubleQuote(const S: string): string;
function StrSmartCase(const S: string; Delimiters: TSysCharSet): string;
function StrCharCount(const S: string; C: Char): Integer;
function StrStrCount(const S, SubS: string): Integer;
function StrRepeat(const S: string; Count: Integer): string;
procedure StrReplace(var S: string; const Search, Replace: string; Flags: TReplaceFlags = []);
function StrSearch(const Substr, S: string; const Index: Integer = 1): Integer;
function BooleanToStr(B: Boolean): string;
function StrToBoolean(const S: string): Boolean;
function StrFind(const Substr, S: string; const Index: Integer = 1): Integer;
function StrIsOneOf(const S: string; const List: array of string): Boolean;
procedure TrimStrings(const List: TStrings; DeleteIfEmpty: Boolean = True);
function FileToString(const FileName: string): AnsiString;
procedure StringToFile(const FileName: string; const Contents: AnsiString);
function StrFillChar(const C: Char; Count: Integer): string;
function IntToStrZeroPad(Value, Count: Integer): String;
function StrPadLeft(const pcOriginal: string;
const piDesiredLength: integer; const pcPad: Char): string;
//function WideStringReplace(const S, OldPattern, NewPattern: WideString; Flags: TReplaceFlags): WideString;
function PathExtractFileNameNoExt(const Path: string): string;
function PadNumber(const pi: integer): string;
function StrHasAlpha(const str: String): boolean;
type
EJcfConversionError = class(Exception)
end;
implementation
uses
{$ifdef MSWINDOWS}
//Windows, ShellApi
{$endif}
{$ifdef Unix}
//Unix
{$endif}
LCLIntf, fileutil;
{$IFNDEF DELPHI12}
{$IFNDEF DELPHI14}
// define CharInSet for Delphi 2007 or earlier
function CharInSet(const C: Char; const testSet: TSysCharSet): Boolean;
begin
Result := C in testSet;
end;
{$ENDIF}
{$ENDIF}
function CharIsAlpha(const C: Char): Boolean;
begin
Result := CharInSet(C, ['a'..'z','A'..'Z']);
end;
function CharIsAlphaNum(const C: Char): Boolean;
begin
Result := CharIsAlpha(C) or CharIsDigit(C);
end;
function CharIsWordChar(const c: Char): Boolean;
begin
Result := CharIsAlpha(c) or (c = '_');
end;
function CharIsControl(const C: Char): Boolean;
begin
Result := C <= #31;
end;
function CharIsDigit(const C: Char): Boolean;
begin
Result := CharInSet(C, ['0'..'9']);
end;
function CharIsReturn(const C: Char): Boolean;
begin
Result := CharInSet(C, [NativeLineFeed, NativeCarriageReturn]);
end;
function CharIsWhiteSpace(const C: Char): Boolean;
begin
Result := CharInSet(C, NativeWhiteSpace) ;
end;
function CharIsWhiteSpaceNoReturn(const c: Char): boolean;
begin
Result := False;
if (c = #0) or CharIsReturn(c) then exit;
// Result := CharIsWhiteSpace(c) and (c <> AnsiLineFeed) and (c <> AnsiCarriageReturn);
Result := (ord(c) <= Ord(NativeSpace));
end;
function CharIsPuncChar(const c: Char): boolean;
begin
Result := False;
if CharIsWhiteSpace(c) then exit;
if CharIsAlphaNum(c) then exit;
if CharIsReturn(c) then exit;
if CharIsControl(c) then exit;
Result := True;
end;
function StrIsAlpha(const S: string): Boolean;
var
I, L: integer;
begin
L := Length(S);
Result := L > 0;
for I := 1 to L do
if not CharIsAlpha(S[I]) then
begin
Result := False;
break;
end;
end;
function StrIsAlphaNum(const S: string): Boolean;
var
I, L: integer;
begin
L := Length(S);
Result := L > 0;
for I := 1 to L do
if not CharIsAlphaNum(S[I]) then
begin
Result := False;
break;
end;
end;
function CharIsHexDigitDot(const c: Char): Boolean;
const
HexDigits: set of AnsiChar = [
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'A', 'B', 'C', 'D', 'E', 'F',
'a', 'b', 'c', 'd', 'e', 'f'];
begin
Result := (c in HexDigits) or (c = '.');
end;
function CharIsBinDigit(const c: Char): Boolean;
const
BinDigits: set of AnsiChar = ['0','1'];
begin
Result := (c in BinDigits);
end;
function StrTrimQuotes(const S: string): string;
var
C1, C2: Char;
L: Integer;
begin
Result := S;
L := Length(Result);
if L >= 2 then
begin
C1 := Result[1];
C2 := Result[L];
if (C1 = C2) and (CharInSet(C1, [NativeSingleQuote, NativeDoubleQuote])) then
begin
Delete(Result, L, 1);
Delete(Result, 1, 1);
end;
end;
end;
function StrAfter(const SubStr, S: string): string;
var
P: Integer;
begin
P := StrSearch(SubStr, S, 1);
if P > 0 then
Result := Copy(S, P + Length(SubStr), Length(S))
else
Result := '';
end;
function StrBefore(const SubStr, S: string): string;
var
P: Integer;
begin
P := StrSearch(SubStr, S, 1);
if P > 0 then
Result := Copy(S, 1, P - 1)
else
Result := S;
end;
function StrChopRight(const S: string; N: Integer): string;
begin
Result := Copy(S, 1, Length(S) - N);
end;
function StrLastPos(const SubStr, S: string): Integer;
var
NewPos: Integer;
begin
Result := 0;
while Result < Length(S) do
begin
NewPos := StrSearch(SubStr, S, Result + 1);
if NewPos > 0 then
Result := NewPos
else
break;
end;
end;
{ case-insensitive "pos" }
function StrIPos(const SubStr, S: string): integer;
begin
// simple and inneficient implmentation
Result := Pos(UpperCase(SubStr), UpperCase(s));
end;
function StrLeft(const S: string; Count: Integer): string;
begin
Result := Copy(S, 1, Count);
end;
function StrRestOf(const S: string; N: Integer ): string;
begin
Result := Copy(S, N, (Length(S) - N + 1));
end;
function StrRight(const S: string; Count: Integer): string;
begin
Result := Copy(S, Length(S) - Count + 1, Count);
end;
function StrDoubleQuote(const S: string): string;
begin
Result := NativeDoubleQuote + S + NativeDoubleQuote;
end;
function StrSmartCase(const S: string; Delimiters: TSysCharSet): string;
var
i: integer;
begin
// if no delimiters passed then use default set
if Delimiters = [] then
Delimiters := NativeWhiteSpace;
Result := S;
for i := 1 to Length(Result) do
if (i = 1) or (CharInSet(Result[i - 1], Delimiters)) then
Result[i] := UpCase(Result[i]);
end;
function StrCharCount(const S: string; C: Char): Integer;
var
i: integer;
begin
Result := 0;
for i := 1 to Length(S) do
if S[i] = C then
inc(Result);
end;
function StrStrCount(const S, SubS: string): Integer;
var
P: integer;
begin
Result := 0;
P := 1;
while P < Length(S) do
begin
P := StrSearch(Subs, S, P);
if P > 0 then
begin
inc(Result);
inc(P);
end
else
break;
end;
end;
function StrRepeat(const S: string; Count: Integer): string;
begin
Result := '';
while Count > 0 do
begin
Result := Result + S;
Dec(Count);
end;
end;
procedure StrReplace(var S: string; const Search, Replace: string; Flags: TReplaceFlags = []);
begin
S := StringReplace(S, Search, Replace, Flags);
end;
function StrSearch(const Substr, S: string; const Index: Integer = 1): Integer;
begin
// Paul: I expect original code was more efficient :)
Result := Pos(SubStr, Copy(S, Index, Length(S)));
if Result > 0 then
Result := Result + Index - 1;
end;
function BooleanToStr(B: Boolean): string;
const
BoolToStrMap: array[Boolean] of String =
(
{ false } 'False',
{ true } 'True'
);
begin
Result := BoolToStrMap[B];
end;
function StrToBoolean(const S: string): Boolean;
var
LowerS: String;
begin
LowerS := LowerCase(S);
if (LowerS = 'false') or (LowerS = 'no') or (LowerS = '0') then
Result := False
else
if (LowerS = 'true') or (LowerS = 'yes') or (LowerS = '1') or (LowerS = '-1') then
Result := True
else
raise EJcfConversionError.Create('Cannot convert string [' + S + '] to boolean');
end;
function StrFind(const Substr, S: string; const Index: Integer = 1): Integer;
begin
// Paul: original code used comparision by char case table
Result := StrSearch(LowerCase(SubStr), LowerCase(S), Index);
end;
function StrIsOneOf(const S: string; const List: array of string): Boolean;
var
i: integer;
begin
for i := Low(List) to High(List) do
if CompareStr(List[i], S) = 0 then
begin
Result := True;
Exit;
end;
Result := False;
end;
procedure TrimStrings(const List: TStrings; DeleteIfEmpty: Boolean = True);
var
i: integer;
begin
if List <> nil then
for i := List.Count - 1 downto 0 do
begin
List[i] := Trim(List[i]);
if DeleteIfEmpty and (List[i] = '') then
List.Delete(i);
end;
end;
function FileToString(const FileName: string): AnsiString;
var
S: TStream;
begin
S := nil;
try
S := TFileStream.Create(FileName, fmOpenRead or fmShareDenyNone);
SetLength(Result, S.Size);
S.Read(PAnsiChar(Result)^, S.Size);
finally
S.Free;
end;
end;
procedure StringToFile(const FileName: string; const Contents: AnsiString);
var
S: TStream;
begin
S := nil;
try
S := TFileStream.Create(FileName, fmCreate);
S.Write(PAnsiChar(Contents)^, Length(Contents));
finally
S.Free;
end;
end;
function StrFillChar(const C: Char; Count: Integer): string;
begin
SetLength(Result, Count);
if Count > 0 then
FillChar(Result[1], Count, C);
end;
function IntToStrZeroPad(Value, Count: Integer): String;
begin
Result := IntToStr(Value);
while Length(Result) < Count do
Result := '0' + Result;
end;
{ pad the string on the left had side until it fits }
function StrPadLeft(const pcOriginal: string;
const piDesiredLength: integer; const pcPad: Char): string;
begin
Result := pcOriginal;
while (Length(Result) < piDesiredLength) do
begin
Result := pcPad + Result;
end;
end;
// Based on FreePascal version of StringReplace
{function WideStringReplace(const S, OldPattern, NewPattern: WideString; Flags: TReplaceFlags): WideString;
var
Srch, OldP, RemS: WideString; // Srch and Oldp can contain uppercase versions of S,OldPattern
P: Integer;
begin
Srch := S;
OldP := OldPattern;
if rfIgnoreCase in Flags then
begin
Srch := WideUpperCase(Srch);
OldP := WideUpperCase(OldP);
end;
RemS := S;
Result := '';
while (Length(Srch) <> 0) do
begin
P := Pos(OldP, Srch);
if P = 0 then
begin
Result := Result + RemS;
Srch := '';
end
else
begin
Result := Result + Copy(RemS, 1, P - 1) + NewPattern;
P := P + Length(OldP);
RemS := Copy(RemS, P, Length(RemS) - P + 1);
if not (rfReplaceAll in Flags) then
begin
Result := Result + RemS;
Srch := '';
end
else
Srch := Copy(Srch, P, Length(Srch) - P + 1);
end;
end;
end;
}
function PadNumber(const pi: integer): string;
begin
Result := IntToStrZeroPad(pi, 3);
end;
function StrHasAlpha(const str: String): boolean;
var
liLoop: integer;
begin
Result := False;
for liLoop := 1 to Length(str) do
begin
if CharIsAlpha(str[liLoop]) then
begin
Result := True;
break;
end;
end;
end;
{------------------------------------------------------
functions to manipulate file paths in strings }
function PathRemoveExtension(const Path: string): string;
var
p: Integer;
begin
// from Lazarus FileUtil
Result := Path;
p := Length(Result);
while (p>0) do
begin
case Result[p] of
PathDelim: Exit;
'.': Result := copy(Result, 1, p-1);
end;
Dec(p);
end;
end;
function PathExtractFileNameNoExt(const Path: string): string;
begin
Result := PathRemoveExtension(ExtractFileName(Path));
end;
function PathRemoveSeparator(const Path: string): string;
begin
Result := Path;
if (Result <> '') and (Result[Length(Result)] = PathDelim) then
Delete(Result, Length(Result), 1);
end;
end.
|