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 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
|
<?xml version="1.0" encoding="UTF-8"?>
<fpdoc-descriptions>
<package name="lazutils">
<!--
====================================================================
LazStringUtils
====================================================================
-->
<module name="LazStringUtils">
<short>
Contains routines used for string manipulation.
</short>
<descr>
<p>
<file>LazStringUtils.pas</file> contains routines used for string manipulation. It is part of the <file>LazUtils</file> package.
</p>
</descr>
<version>
File added in LCL version 2.0.X (revision 58631).
</version>
<!-- unresolved externals -->
<element name="Classes"/>
<element name="SysUtils"/>
<element name="LazUTF8"/>
<element name="LazLoggerBase"/>
<element name="LazTracer"/>
<element name="TCommentType">
<short>Represents comment styles available in CommentText.</short>
<descr/>
<seealso>
<link id="CommentText"/>
<link id="TCommentTypes"/>
</seealso>
</element>
<element name="TCommentType.comtDefault">
<short>Auto-detected comment style.</short>
</element>
<element name="TCommentType.comtNone">
<short>No comment.</short>
</element>
<element name="TCommentType.comtPascal">
<short>Comment surrounded by <b>{ }</b> characters.</short>
</element>
<element name="TCommentType.comtDelphi">
<short>Delphi inline comment using a <b>//</b> marker.</short>
</element>
<element name="TCommentType.comtTurboPascal">
<short>TurboPascal comment using <b>(* *)</b> markers.</short>
</element>
<element name="TCommentType.comtCPP">
<short>C++ comment using <b>/* */</b> markers.</short>
</element>
<element name="TCommentType.comtPerl">
<short>Perl comment using a <b>#</b> marker.</short>
</element>
<element name="TCommentType.comtHtml">
<short>HTML/XML comment using <b><!-- --></b> markers.</short>
</element>
<element name="TCommentTypes">
<short>Set type for TCommentType enumeration values.</short>
<descr/>
<seealso>
<link id="TCommentType"/>
<link id="CommentText"/>
</seealso>
</element>
<element name="EndOfLine">
<short>End-of-line character sequence.</short>
<descr>
<p>
<var>EndOfLine</var> is a <var>ShortString</var> constant used to represent the end-of-line character sequence. The value is set to the <var>LineEnding</var> for the platform or operating system.
</p>
</descr>
<seealso>
<link id="#rtl.system.LineEnding">LineEnding</link>
</seealso>
</element>
<element name="LazStartsStr">
<short>Determines if a string starts with the specified value.</short>
<descr>
<p>
<var>LazStartsStr</var> is a <var>Boolean</var> function used to determine if the string in <var>AText</var> starts with the text specified in <var>ASubText</var>. It is a modified version of <var>StartsStr</var> from the RTL <file>strutils.pp</file> unit.
</p>
<p>
LazStartsStr casts the values in ASubText and AText to PChar types, and calls <var>StrLComp</var> to perform the comparison.
</p>
<p>
The returns value is <b>True</b> when AText begins with the specified sub-text. It also returns <b>True</b> when ASubText is an empty string (<b>''</b>), which is Delphi compatible.
</p>
</descr>
<seealso>
<link id="LazEndsStr"/>
<link id="LazStartsText"/>
</seealso>
</element>
<element name="LazStartsStr.Result">
<short>True when the string starts with the specified sub-text.</short>
</element>
<element name="LazStartsStr.ASubText">
<short>Value to look for at the start of the text.</short>
</element>
<element name="LazStartsStr.AText">
<short>Text examined in the routine.</short>
</element>
<element name="LazEndsStr">
<short>Determines if a string ends with the specified value.</short>
<descr>
<p>
<var>LazEndsStr</var> is a <var>Boolean</var> function used to determine if the string in <var>AText</var> ends with the text specified in <var>ASubText</var>. It is a modified version of <var>EndsStr</var> from the RTL <file>strutils.pp</file> unit.
</p>
<p>
LazEndsStr casts the values in ASubText and AText to PChar types, and calls <var>StrLComp</var> to perform the comparison.
</p>
<p>
The returns value is <b>True</b> when AText ends with the specified sub-text. It also returns <b>True</b> when ASubText is an empty string (<b>''</b>), which is Delphi compatible.
</p>
</descr>
<seealso>
<link id="LazStartsStr"/>
<link id="LazEndsText"/>
</seealso>
</element>
<element name="LazEndsStr.Result">
<short>True when the string ends with the specified value.</short>
</element>
<element name="LazEndsStr.ASubText">
<short>Text to look for at the end of the string.</short>
</element>
<element name="LazEndsStr.AText">
<short>String examined in the routine.</short>
</element>
<element name="LazStartsText">
<short>Determines if a string occurs at the beginning of the specified text.</short>
<descr>
<p>
<var>LazStartsText</var> is a fast implementation of <var>StartsText</var>. The version in the RTL <file>strutils.pp</file> unit calls <var>AnsiCompareText</var> and is <b>very</b> slow.
</p>
<p>
LazStartsText casts the values in <var>ASubText</var> and <var>AText</var> to <var>PChar</var> types, and calls <var>StrLIComp</var> to perform a case-insensitive comparison for the number of characters in ASubText.
</p>
<p>
The return value is <b>True</b> when ASubText and AText start with the same values. The return value is also <b>True</b> when ASubText is an empty string (<b>''</b>); this is Delphi compatible. The return value is <b>False</b> when StrLIComp returns a non-zero value.
</p>
</descr>
<seealso>
<link id="#rtl.strutils.StartsText">StartsText</link>
<link id="#rtl.sysutils.StrLIComp">StrLIComp</link>
</seealso>
</element>
<element name="LazStartsText.Result">
<short>True when the sub-text is at the start of the string value.</short>
</element>
<element name="LazStartsText.ASubText">
<short>Value to locate at the start of the string.</short>
</element>
<element name="LazStartsText.AText">
<short>String value used in the comparison.</short>
</element>
<element name="LazEndsText">
<short>Determines if a string occurs at the end of the specified text.</short>
<descr>
<p>
<var>LazEndsText</var> is a fast implementation of <var>EndsText</var>. The version in the RTL <file>strutils.pp</file> unit calls <var>AnsiCompareText</var> and is <b>very</b> slow.
</p>
<p>
LazEndsText casts the values in <var>ASubText</var> and <var>AText</var> to PChar types, and calls <var>StrLIComp</var> to perform a case-insensitive comparison for the number of characters in ASubText at the end of the value in AText.
</p>
<p>
The return value is <b>True</b> when AText ends with the value in ASubText. The return value is <b>True</b> when ASubText is an empty string (<b>''</b>); this is Delphi compatible. It is False when StrLIComp returns a non-zero value, or when ASubText is longer than AText.
</p>
</descr>
<seealso>
<link id="#rtl.strutils.EndsText">EndsText</link>
<link id="#rtl.sysutils.StrLIComp">StrLIComp</link>
</seealso>
</element>
<element name="LazEndsText.Result">
<short>True when the sub-text is at the end of the string value.</short>
</element>
<element name="LazEndsText.ASubText">
<short>Value to locate at the end of the string.</short>
</element>
<element name="LazEndsText.AText">
<short>String value used in the comparison.</short>
</element>
<element name="PosI">
<short>A case-insensitive optimized version of the Pos routine.</short>
<descr>
<p>
<var>PosI</var> implements a case-insensitive optimized version of the <var>Pos</var> routine found the RTL <file>system</file> unit. It only accepts <var>String</var> values in its parameters, unlike the RTL overloaded variants which accept combinations of the Char, ShortString, AnsiString, UnicodeString, WideString, and Variant types.
</p>
<p>
It is also an alternative to the <var>ContainsText</var> routine in the RTL <file>StrUtils</file> unit, which has a <b>very</b> slow implementation.
</p>
<p>
<var>SubStr</var> contains the value to locate in <var>S</var>.
</p>
<p>
PosI supports ASCII comparison. It converts the values in SubStr and S to lowercase char by char for fast comparisons. The result is much faster than Pos(Lowercase(SubStr),Lowercase(S)) which is often used.
</p>
<p>
The return value contains the position in S where SubStr is located, or 0 when SubStr does not occur in S. The position is 1-based just like indexed access to values in the String type.
</p>
</descr>
<seealso>
<link id="#rtl.system.Pos">Pos</link>
<link id="#rtl.strutils.ContainsText">ContainsText</link>
</seealso>
</element>
<element name="PosI.Result">
<short>Position of the sub-string within the searched value, or 0 when not found.</short>
</element>
<element name="PosI.SubStr">
<short>Value to locate in the searched value.</short>
</element>
<element name="PosI.S">
<short>Value searched for the specified sub-string.</short>
</element>
<element name="IsNumber">
<short>True when characters in S are in the range <b>'0'..'9'</b></short>
<descr/>
<seealso/>
</element>
<element name="IsNumber.Result">
<short>True when characters in S are in the range '0'..'9'</short>
</element>
<element name="IsNumber.s">
<short>String with values examined in the routine.</short>
</element>
<element name="LineEndingCount">
<short>Gets the number of LineEnding sequences in the specified text.</short>
<descr/>
<seealso/>
</element>
<element name="LineEndingCount.Result">
<short>Number of LineEnding sequences in the text.</short>
</element>
<element name="LineEndingCount.Txt">
<short>Text examined in the routine.</short>
</element>
<element name="LineEndingCount.LengthOfLastLine">
<short>Number of characters in the last line.</short>
</element>
<element name="ChangeLineEndings">
<short>Converts CR and LF characters in s string to the specified line-ending sequence.</short>
<descr>
<p>
<var>ChangeLineEndings</var> is a <var>String</var> function used to convert <b>CR</b> or <b>LF</b> characters in a string to the specified line-ending character sequence. ChangeLineEndings assumes that values in <var>S</var> are single-byte values and not multi-byte UTF-8 characters.
</p>
<p>
ChangeLineEndings iterates over the byte values in S, and replaces any occurrences of <b>CR</b> (<b>#13</b>), <b>LF</b> (<b>#10</b>), or <b>CR+LF</b> (<b>#13#10</b>) to the specified end-of-line character sequence. No actions are performed in the function when S is an empty string (<b>''</b>).
</p>
</descr>
<seealso/>
</element>
<element name="ChangeLineEndings.Result">
<short>Value from S after conversion of line endings.</short>
</element>
<element name="ChangeLineEndings.s">
<short>Values examined in the routine.</short>
</element>
<element name="ChangeLineEndings.NewLineEnding">
<short>End-of-line character sequence applied to the return value.</short>
</element>
<element name="LineBreaksToSystemLineBreaks">
<short>Normalizes end-of-line characters in a string to the value in LineEnding.</short>
<descr>
<p>
Calls ChangeLineEndings to normalize line ending sequences to the value in LineEnding.
</p>
</descr>
<seealso/>
</element>
<element name="LineBreaksToSystemLineBreaks.Result">
<short>Value after line ending sequences have been replaced.</short>
</element>
<element name="LineBreaksToSystemLineBreaks.s">
<short>String with values examined and updated in the routine.</short>
</element>
<element name="LineBreaksToDelimiter">
<short>
Converts CR or LF characters in a string to the specified delimiter character.
</short>
<descr/>
<seealso/>
</element>
<element name="LineBreaksToDelimiter.Result">
<short>Value after converting CR, LF to the delimiter character </short>
</element>
<element name="LineBreaksToDelimiter.s">
<short>String with values converted in the routine.</short>
</element>
<element name="LineBreaksToDelimiter.Delimiter">
<short>Delimiter character used in place of CR, LF characters.</short>
</element>
<element name="ConvertLineEndings">
<short>Deprecated.</short>
<descr>
<remark>Deprecated. Use LineBreaksToSystemLineBreaks instead.</remark>
</descr>
<seealso>
<link id="LineBreaksToSystemLineBreaks"/>
</seealso>
</element>
<element name="ConvertLineEndings.Result">
<short>Value after converting the line endings.</short>
</element>
<element name="ConvertLineEndings.s">
<short>Value with line endings to convert in the routine.</short>
</element>
<element name="TabsToSpaces">
<short>Converts all Tab characters in a string to the specified number of space characters.</short>
<descr>
<p>
Replaces all <b>Tab</b> characters (<b>#9</b>) in <var>S</var> with the specified number of space characters.
</p>
</descr>
<seealso/>
</element>
<element name="TabsToSpaces.Result">
<short>String value after converting Tab characters to spaces.</short>
</element>
<element name="TabsToSpaces.s">
<short>String with values updated in the routine.</short>
</element>
<element name="TabsToSpaces.TabWidth">
<short>Number of space characters to use for each Tab character.</short>
</element>
<element name="TabsToSpaces.UseUTF8">
<short>True when UTF-8 codepoints are used to convert individual characters.</short>
</element>
<element name="CommentText">
<short>
Converts a string into a comment using the specified comment style.
</short>
<descr>
<p>
<var>CommentText</var> is a <var>String</var> function used to convert the specified string into a comment using a given comment style.
</p>
<p>
<var>CommentType</var> is a <var>TCommentType</var> value which indicates the comment style applied to the value in <var>S</var>. See <link id="TCommentType">TCommentType</link> for more information about the enumeration values and their meanings.
</p>
<p>
No actions are performed in the function when CommentType contains <var>comtNone</var>.
</p>
<p>
When CommentType contains <var>comtDefault</var>, the <var>comtPascal</var> comment style is applied to the value in S.
</p>
<p>
An internal procedure is used to apply the starting marker (and ending marker when needed) as well as a continuation character sequence for a multi-line comment.
</p>
<p>
CommentText is used in the implementation of the source code editor in the Lazarus IDE. An <var>Exception</var> can be raised if the comment length does not match the expected length for the comment style.
</p>
</descr>
<errors>
Raises an Exception with the message 'IDEProcs.CommentText ERROR: ' when an unexpected length is found for the commented value.
</errors>
<seealso>
<link id="TCommentType"/>
</seealso>
</element>
<element name="CommentText.Result">
<short>Comment with the specified style marker(s).</short>
</element>
<element name="CommentText.s">
<short>Value converted into a comment.</short>
</element>
<element name="CommentText.CommentType">
<short>Comment type applied to the string.</short>
</element>
<element name="SimpleSyntaxToRegExpr">
<short>Creates a regular expression from a filter expression used in IDE dialogs.</short>
<descr>
<p>
Ensures that characters in <var>Src</var> are converted to the notation needed for regular expressions, including '.', ',', ';', '*', '+', '?', and '\'. The return value is enclosed in a regex single line expression ('^(...)$').
</p>
<p>
Used in the implementation of the Clean Directory and Change Encoding dialogs in the Lazarus IDE.
</p>
</descr>
<seealso/>
</element>
<element name="SimpleSyntaxToRegExpr.Result">
<short>Regular expression for the value in Src.</short>
</element>
<element name="SimpleSyntaxToRegExpr.Src">
<short>Filter expression converted to a regular expression in the routine.</short>
</element>
<element name="BinaryStrToText">
<short>Replaces control characters with Pascal-style character constants.</short>
<descr>
<p>
Replaces control characters (<b>#0..#31</b>) with Pascal-style character constants using the <b>#nnn</b> notation.
</p>
</descr>
<seealso/>
</element>
<element name="BinaryStrToText.Result">
<short>String after replacing binary characters.</short>
</element>
<element name="BinaryStrToText.s">
<short>Values examined and converted in the routine.</short>
</element>
<element name="SpecialCharsToSpaces">
<short>Converts occurrences of special characters to spaces.</short>
<descr>
<p>
Converts special characters (<b>#0..#31, #127</b>) to a Space character. Converts line breaks to a single Space character (<b>#32</b>). Trims leading and trailing Spaces. Calls <var>UTF8FixBroken</var> when <var>FixUTF8</var> is <b>True</b>.
</p>
</descr>
<seealso/>
</element>
<element name="SpecialCharsToSpaces.Result">
<short>String after converting special characters.</short>
</element>
<element name="SpecialCharsToSpaces.s">
<short>String examined and converted in the routine.</short>
</element>
<element name="SpecialCharsToSpaces.FixUTF8">
<short>True when invalid UTF-8 codepoints are repaired in the string.</short>
</element>
<element name="SpecialCharsToHex">
<short>Converts special characters to Pascal-style hexadecimal character constants.</short>
<descr>
<p>
<var>SpecialCharsToHex</var> is a <var>String</var> function used to convert special or control characters (those prior to the Space character Decimal 32) to their representation as a Pascal-style hexadecimal character constant using notation like <b>#$1B</b>. Other character values in <var>s </var> are not altered in any way.
</p>
<p>
SpecialCharsToHex calls <var>Utf8EscapeControlChars</var> in <file>LazUtf8</file> to get the return value for the function. The value <var>emHexPascal</var> is passed as an argument to request hexadecimal notation in the special characters.
</p>
<p>
SpecialCharsToHex is used in the implementation of the Search Result view in the Lazarus IDE.
</p>
<remark>
SpecialCharsToHex has been <b>deprecated</b> in Lazarus 2.1, and will be removed in Lazarus 2.3. Use the <var>Utf8EscapeControlChars</var> routine in <file>LazUtf8.pas</file> instead.
</remark>
</descr>
<seealso>
<link id="#lazutils.lazutf8.Utf8EscapeControlChars">Utf8EscapeControlChars</link>
</seealso>
</element>
<element name="SpecialCharsToHex.Result">
<short>String after converting special characters to Pascal-style constants.</short>
</element>
<element name="SpecialCharsToHex.s">
<short>Values examined and converted in the routine.</short>
</element>
<element name="ShortDotsLine">
<short>Shortens and "ellipsifies" the specified value.</short>
<descr>
<p>
<var>ShortDotsLine</var> is a <var>String</var> function used to generate a shortened and "ellipsified" string for the value in Line.
</p>
<p>
ShortDotsLine calls <var>Utf8EscapeControlChars</var> to convert any control characters in Line to their representation as a hexadecimal character value.
</p>
<p>
The value in the <var>MaxTextLen</var> constant is used as the maximum length for the "ellipsified" string value. If the number of UTF-8 codepoints in the line is larger than the value in MaxTextLen, the string is shortened to the maximum length and 3 (three) Period ('.') characters are appended to the return value.
</p>
</descr>
<seealso>
<link id="MaxTextLen"/>
<link id="#lazutils.lazutf8.Utf8EscapeControlChars">Utf8EscapeControlChars</link>
</seealso>
</element>
<element name="ShortDotsLine.Result">
<short>Shortened and "ellipsified" value for the specified line of text.</short>
</element>
<element name="ShortDotsLine.Line">
<short>Line of text examined in the routine.</short>
</element>
<element name="BeautifyLineXY">
<short>Combines and optionally shortens the specified values.</short>
<descr>
<p>
<var>BeautifyLineXY</var> is a <var>String</var> function used to combine the values in the <var>Filename</var>, <var>Line</var>, <var>X</var> and <var>Y</var> arguments into a formatted message. The message is in the form:
</p>
<code>examplefile.pas (123, 1) The error message goes here.</code>
<p>
<var>Filename</var> contains a file name used at the start of the formatted message.
</p>
<p>
<var>X</var> represents the line number in the context for the message.
</p>
<p>
<var>Y</var> represents the column number in the context for the message.
</p>
<p>
<var>Line</var> contains the context for the formatted message. The <var>ShortDotsLine</var> routine is called to shorten and "ellipsify" the message in Line when needed.
</p>
<p>
BeautifyLineXY is used in the implementation of Jump History and Search Result views in the Lazarus IDE.
</p>
</descr>
<seealso>
<link id="ShortDotsLine"/>
<link id="MaxTextLen"/>
</seealso>
</element>
<element name="BeautifyLineXY.Result">
<short>Formatted message using the specified values.</short>
</element>
<element name="BeautifyLineXY.Filename">
<short>File name used at the start of the formatted message.</short>
</element>
<element name="BeautifyLineXY.Line">
<short>Contains the context for the formatted message.</short>
</element>
<element name="BeautifyLineXY.X">
<short>Line number for the message context.</short>
</element>
<element name="BeautifyLineXY.Y">
<short>Column number for the message context.</short>
</element>
<element name="BreakString">
<short>Applies line breaks and indenting to a string value.</short>
<descr>
<p>
<var>BreakString</var> is a <var>String</var> function used to apply line breaks and indent spacing to the text specified in <var>S</var>.
</p>
<p>
<var>MaxLineLength</var> contains the maximum number of characters allowed on any given line.
</p>
<p>
<var>Indent</var> contains the number of space characters used to indent text following a line break. The value in Indent may be adjusted if it is too large for the value specified in MaxLineLength.
</p>
<p>
BreakString examines values in S and counts the number of characters in each of the lines. Existing <b>CR</b> (<b>#13</b>) or <b>LF</b> (<b>#10</b>) characters are preserved. If the value in MaxLineLength is reached for any given line, a new line is created by inserting the value in LineEnding. The line break occurs at a natural word boundary when one can be determined.
</p>
<p>
Inserting a line break causes an indent with the number of space characters in Indent to be inserted in the return value following the line break.
</p>
<p>
The process is repeated until all values in S have been handled.
</p>
<p>
The return value contains the content in S after applying line breaks and indent spacing.
</p>
</descr>
<seealso>
<link id="#rtl.system.LineEnding">LineEnding</link>
</seealso>
</element>
<element name="BreakString.Result">
<short>String with values after applying line breaks and indent spacing.</short>
</element>
<element name="BreakString.s">
<short>Contains the text examined and formatted in the routine.</short>
</element>
<element name="BreakString.MaxLineLength">
<short>Maximum length of lines in the converted value.</short>
</element>
<element name="BreakString.Indent">
<short>Number of Space characters prepended as an indent for lines in the converted value.</short>
</element>
<element name="SplitString">
<short>
Creates and populates a TStringList with lines determined using the specified delimiter character.
</short>
<descr/>
<seealso/>
</element>
<element name="SplitString.Result">
<short>TStrings instance created and populated in the routine.</short>
</element>
<element name="SplitString.s">
<short>String with the values examined and loaded into the string list.</short>
</element>
<element name="SplitString.Delimiter">
<short>Character used to delimit lines of text in S.</short>
</element>
<element name="SplitString.AddTo">
<short>TStrings instance where lines of text are stored.</short>
</element>
<element name="SplitString.ClearList">
<short>True to clear the string list; False to append lines to existing values.</short>
</element>
<element name="StringListToText">
<short>Gets a string with the lines of text from the specified TStrings instance.</short>
<descr/>
<seealso/>
</element>
<element name="StringListToText.Result">
<short>String with the delimited lines of text from the TStrings instance.</short>
</element>
<element name="StringListToText.List">
<short>TStrings instance with text values retrieved in the routine.</short>
</element>
<element name="StringListToText.Delimiter">
<short>End-of-Line sequence used to delimit lines of text in the result value.</short>
</element>
<element name="StringListToText.IgnoreEmptyLines">
<short>True to omit empty lines in the string list from the return value.</short>
</element>
<element name="StringListPartToText">
<short>Converts the specified lines in a TStrings instance to a string value.</short>
<descr>
<p>
<var>StringListPartToText</var> is a <var>String</var> function used to get a line of text which contains the specified range of lines from a <var>TStrings</var> instance.
</p>
<p>
<var>List</var> is the TStrings instance which contains the lines of text examined in the function.
</p>
<p>
<var>FromIndex</var> and <var>ToIndex</var> indicate the line numbers in List used in the return value for the function. They must contain valid ordinal positions, and are used to access the indexed Strings property in the TStrings instance.
</p>
<p>
If FromIndex contains -1, it defaults to the first ordinal position (0). ToIndex must be equal to or larger than the value in FromIndex, and valid for the number of Strings in the string list. It defaults to the upper limit for the string list when it is too large. FromIndex cannot have a value that is larger than the one in ToIndex.
</p>
<p>
No actions are performed in the function when List is unassigned (contains Nil), or when values in the FromIndex or ToIndex parameters are invalid. The return value is an empty string ('') in these scenarios.
</p>
<p>
<var>IgnoreEmptyLines</var> indicates whether empty lines in the string list are omitted from the return value for the function. When set to <b>True</b>, any Strings value that is an empty string (<b>''</b>) is discarded. Otherwise, the empty value is denoted by adding the value in Delimiter to the return value.
</p>
<p>
<var>Delimiter</var> contains the end-of-line sequence used to separate strings added to the return value.
</p>
</descr>
<seealso>
<link id="#rtl.classes.TStrings">TStrings</link>
<link id="#rtl.classes.TStringList">TStringList</link>
</seealso>
</element>
<element name="StringListPartToText.Result">
<short>Text representing the specified lines in the TStrings instance.</short>
</element>
<element name="StringListPartToText.List">
<short>TStrings instance examined in the method.</short>
</element>
<element name="StringListPartToText.FromIndex">
<short>First line includes in the text.</short>
</element>
<element name="StringListPartToText.ToIndex">
<short>Last line included in the text.</short>
</element>
<element name="StringListPartToText.Delimiter">
<short>Delimiter inserted between lines in the text.</short>
</element>
<element name="StringListPartToText.IgnoreEmptyLines">
<short>Indicates if empty lines are excluded from the text.</short>
</element>
<element name="StringListToString">
<short>Converts the content in a TStrings instance to a string value.</short>
<descr>
<p>
Adds a <b>LF</b> (<b>#10</b>) character to the end of text lines in the string list. Quotes each string value which ends with a LF character using surrounding <b>Quote</b> (<b>'</b>) characters.
</p>
</descr>
<seealso/>
</element>
<element name="StringListToString.Result">
<short>String representing the contents of the TStrings instance.</short>
</element>
<element name="StringListToString.List">
<short>TStrings instance examined in the method.</short>
</element>
<element name="StringListToString.FromIndex">
<short>First line included in the string value.</short>
</element>
<element name="StringListToString.ToIndex">
<short>Last line included in the string value.</short>
</element>
<element name="StringListToString.IgnoreEmptyLines">
<short>Indicates if empty lines are excluded from the result.</short>
</element>
<element name="StringToStringList">
<short>Stores a multi-line string as seperate lines in a TStrings instance.</short>
<descr>
<p>
<var>StringToStringList</var> is a procedure used to convert the multi-line String in <var>S</var> to separate lines of text in a <var>TStrings</var> instance.
</p>
<p>
The <b>LF</b> (<b>#10</b>) character is used to mark the end of a line in <var>S</var>, and causes the preceeding text to be added to the string list in <var>List</var>. The LF character is not included in the value added to the string list.
</p>
<p>
If no end-of-line characters are found in <var>S</var>, then a single line of text is added to the string list.
</p>
</descr>
<seealso/>
</element>
<element name="StringToStringList.s">
<short>String with values extracted and stored in the string list.</short>
</element>
<element name="StringToStringList.List">
<short>TStrings instance where values are stored in the routine.</short>
</element>
<element name="GetNextDelimitedItem">
<short>Gets the next delimited value in List starting at the specified position.</short>
<descr>
<p>
<var>GetNextDelimitedItem</var> is a <var>String</var> function used to get the next item in a delimited list of items starting at the specified position.
</p>
<p>
<var>List</var> contains the list of values examined in the routine.
</p>
<p>
<var>Delimiter</var> is the character used to separate item values in List.
</p>
<p>
<var>Position</var> contains the initial character position in List examined in the routine.
</p>
<p>
GetNextDelimitedItem iterates over the characters in List starting at the character in Position. When the character in Delimiter is encountered, the characters starting at Position and prior to the position for the Delimiter are copied into the return value.
</p>
<p>
The value in Position is incremented to skip both the character values and the delimiter for the list item.
</p>
</descr>
<seealso/>
</element>
<element name="GetNextDelimitedItem.Result">
<short>Value for the list item at the specified position.</short>
</element>
<element name="GetNextDelimitedItem.List">
<short>List of delimited values examined in the routine.</short>
</element>
<element name="GetNextDelimitedItem.Delimiter">
<short>Delimiter character used to separate values in the list.</short>
</element>
<element name="GetNextDelimitedItem.Position">
<short>Initial position in the list where the characters are examined </short>
</element>
<element name="HasDelimitedItem">
<short>Determines if a value exists in a delimited list of values.</short>
<descr>
<p>
<var>HasDelimitedItem</var> is a <var>Boolean</var> function used to determine if the specified value exists in a delimited list of values.
</p>
<p>
<var>List</var> contains the item values examined in the routine.
</p>
<p>
<var>Delimiter</var> is the character used to separate the item values in List.
</p>
<p>
<var>FindItem</var> contains the value to locate in the List of items.
</p>
<p>
HasDelimitedItem calls <var>FindNextDelimitedItem</var> to get the return value for the method. The return value is <b>True</b> when FindNextDelimitedItem returns an non-empty string value.
</p>
</descr>
<seealso>
<link id="FindNextDelimitedItem"/>
</seealso>
</element>
<element name="HasDelimitedItem.Result">
<short>True when the specified item is found in the list.</short>
</element>
<element name="HasDelimitedItem.List">
<short>Values checked for the specified item.</short>
</element>
<element name="HasDelimitedItem.Delimiter">
<short>Delimiter used to separate items in the list.</short>
</element>
<element name="HasDelimitedItem.FindItem">
<short>Value to locate in the list of items.</short>
</element>
<element name="FindNextDelimitedItem">
<short>Finds the next occurrence of a specific value in a delimited list.</short>
<descr>
<p>
<var>FindNextDelimitedItem</var> is a <var>String</var> function used to find the next occurrence of a specific value in a delimited list of values.
</p>
<p>
<var>List</var> is the list with the delimited values searched in the routine.
</p>
<p>
<var>Delimiter</var> is the character used to separate the values in List.
</p>
<p>
<var>Position</var> is a variable parameter with the character index in List where the find operation is started. Position is 1-based, like using indexed access to the values in a String.
</p>
<p>
FindItem is the value to locate in List starting at the given position.
</p>
<p>
FindNextDelimitedItem calls the <var>GetNextDelimitedItem</var> routine to get the individual delimited values in List. GetNextDelimitedItem updates the value in Position when an item is retrieved. The value in Position is set to <b>Len(List)+1</b> if FindItem is not found in the routine.
</p>
<p>
The return value is set to the value in FindItem if it is found in List. The return value is an empty string (<b>''</b>) if FindItem is not found in the List starting at the given position.
</p>
</descr>
<seealso>
<link id="GetNextDelimitedItem"/>
</seealso>
</element>
<element name="FindNextDelimitedItem.Result">
<short>The value in FindItem when found, or an empty string.</short>
</element>
<element name="FindNextDelimitedItem.List">
<short>List with delimited values examined in the routine.</short>
</element>
<element name="FindNextDelimitedItem.Delimiter">
<short>Character used to separate values in the list.</short>
</element>
<element name="FindNextDelimitedItem.Position">
<short>Starting position for the values examined in the routine.</short>
</element>
<element name="FindNextDelimitedItem.FindItem">
<short>Item value to locate in List.</short>
</element>
<element name="MergeWithDelimiter">
<short>Combines two string values using the specified delimiter character.</short>
<descr>
<p>
The value in <var>Delimiter</var> is omitted from the return value if either <var>A</var> or <var>B</var> is an empty string (<b>''</b>).
</p>
</descr>
<seealso/>
</element>
<element name="MergeWithDelimiter.Result">
<short>Combined values using the specified delimiter.</short>
</element>
<element name="MergeWithDelimiter.a">
<short>First value merged in the result.</short>
</element>
<element name="MergeWithDelimiter.b">
<short>Second value merged after the delimiter.</short>
</element>
<element name="MergeWithDelimiter.Delimiter">
<short>Delimiter used to separate values.</short>
</element>
<element name="StripLn">
<short>Gets the first line of text up to an end-of-line character.</short>
<descr>
<p>
<var>StripLn</var> is a <var>String</var> function used to get the first line of text in the specified value up to an end-of-line character. CR and LF characters are recognized as end-of-line characters.
</p>
<p>
The return value contains the values from <var>ALine</var> prior to the first end-of-line character, or the entire contents of ALine when an end-of-line character is not found.
</p>
<remark>
The value in ALine is a constant parameter and is not altered in any way in the routine.
</remark>
</descr>
<seealso/>
</element>
<element name="StripLn.Result">
<short>Text in the initial line of text.</short>
</element>
<element name="StripLn.ALine">
<short>Values examined in the routine.</short>
</element>
<element name="GetPart">
<short/>
<descr>
GetPart is an overloaded String function.
It is used to implement facilities in the debugger.
</descr>
<seealso/>
</element>
<element name="GetPart.Result">
<short/>
</element>
<element name="GetPart.ASkipTo">
<short/>
</element>
<element name="GetPart.AnEnd">
<short/>
</element>
<element name="GetPart.ASource">
<short/>
</element>
<element name="GetPart.AnIgnoreCase">
<short/>
</element>
<element name="GetPart.AnUpdateSource">
<short/>
</element>
<element name="TextToSingleLine">
<short>Converts a multi-line string to a single line of text.</short>
<descr>
<p>
Replaces <b>CR</b> and <b>LF</b> characters in <var>AText</var> with <b>Space</b> characters. Duplicate Space characters in the return value are converted to a single Space character.
</p>
</descr>
<seealso/>
</element>
<element name="TextToSingleLine.Result">
<short>Text after removing end-of-line characters and duplicate spaces.</short>
</element>
<element name="TextToSingleLine.AText">
<short>Text values examined and converted in the routine.</short>
</element>
<element name="SwapCase">
<short>Inverts the case for characters in the specified text.</short>
<descr>
<p>
Inverts the case for characters in the specified string value. Like using LowerCase and UpperCase simultaneously.
</p>
</descr>
<seealso/>
</element>
<element name="SwapCase.Result">
<short>String with values after inverting the case for each character.</short>
</element>
<element name="SwapCase.S">
<short>String with the characters converted in the routine.</short>
</element>
<element name="ReplaceSubstring">
<short>Replaces (or appends) the specified number of bytes at a given position.</short>
<descr>
<p>
<var>ReplaceSubstring</var> is a procedure used to replace a portion of a string with the specified value.
</p>
<p>
<var>Startpos</var> contains the byte position in S where the substitution is performed. When StartPos is larger that the number of bytes in S, the value in Insertion is appended to the existing string value. The initial value in StartPos is 1.
</p>
<p>
<var>Count</var> contains the number of bytes in the string to be replaced in the routine. Count cannot exceed the number of bytes available starting at StartPos. No actions are performed in the routine when Count is <b>0</b> (<b>zero</b>) and the length of the Insertion parameter is <b>0</b> (<b>zero</b>).
</p>
<p>
ReplaceSubstring calls <var>CompareMem</var> to determine if the specified range in S and the value in Insertion have the same content. No actions are performed when the contain the same values.
</p>
<p>
The affected byte values in S are transferred by calling the <var>System.Move</var> routine. <var>SetLength</var> is called to update the new length for the string.
</p>
</descr>
<seealso/>
</element>
<element name="ReplaceSubstring.S">
<short>String with values examined and updated in the routine.</short>
</element>
<element name="ReplaceSubstring.StartPos">
<short>Initial byte position in the string where the substitution occurs.</short>
</element>
<element name="ReplaceSubstring.Count">
<short>Number of bytes replaced in the string.</short>
</element>
<element name="ReplaceSubstring.Insertion">
<short>Value inserted (or appended) to the value in the string.</short>
</element>
<element name="StringCase">
<short>Emulates the CASE .. OF statement for string values.</short>
<descr>
<p>
<var>StringCase</var> is an overloaded <var>Integer</var> function used to emulate the Pascal <b>CASE .. OF</b> statement.
</p>
<p>
<var>AString</var> contains the value compared to the elements in the <var>ACase</var> array.
</p>
<p>
<var>ACase</var> is an array of String values which determine the result for the function.
</p>
<p>
<var>AIgnoreCase</var> indicates whether case is significant when comparing AString to elements in ACase. <b>False</b> indicates that case is not used in the comparison.
</p>
<p>
<var>APartial</var> indicates whether the value in AString can be a partial match for the value in an array element. When set to <b>False</b>, AString must match the array element exactly to be considered a match. When set to <b>True</b>, any value in ACase which starts with the value in AString is considered a match.
</p>
<p>
The return value contains the ordinal position of the element in ACase which matches the value in AString. The return value is <b>-1</b> if no match was found for the value in AString.
</p>
</descr>
<seealso/>
</element>
<element name="StringCase.Result">
<short>Ordinal position for the case selector, or -1 when a match is not found.</short>
</element>
<element name="StringCase.AString">
<short>Value compared to the array elements.</short>
</element>
<element name="StringCase.ACase">
<short>Determines the selector in the return value </short>
</element>
<element name="StringCase.AnIgnoreCase">
<short>True if case is ignored in the comparison.</short>
</element>
<element name="StringCase.APartial">
<short>True is a partial match at the start of the selector is a match.</short>
</element>
<element name="SamePChar">
<short>Returns True if P1 and P2 have the same content.</short>
<descr>
<p>
Returns <var>False</var> if either <var>P1</var> or <var>P2</var> are unassigned (contain <b>Nil</b>).
</p>
</descr>
<seealso/>
</element>
<element name="SamePChar.Result">
<short>True when P1 and P2 have the same content, or are the same pointer.</short>
</element>
<element name="SamePChar.P1">
<short>Pointer to characters compared in the routine.</short>
</element>
<element name="SamePChar.P2">
<short>Pointer to characters compared in the routine.</short>
</element>
<element name="StrLScan">
<short>
Like StrScan but compares only the specified number of characters in MaxLen.
</short>
<descr>
<p>
The return value is <b>Nil</b> when <var>P</var> is unassigned (contains <b>Nil</b>), or when <var>P</var> contains a terminating null character prior to finding a match for <var>c</var> before comparing the requested number of characters in <var>MaxLen</var>.
</p>
<p>
When c is located in P, the return value is a <var>PChar</var> pointer to the location where c was located.
</p>
</descr>
<seealso/>
</element>
<element name="StrLScan.Result">
<short>Pointer to the character located in P, or Nil.</short>
</element>
<element name="StrLScan.P">
<short>Pointer to characters examined in the routine.</short>
</element>
<element name="StrLScan.c">
<short>Character to locate in the specified values.</short>
</element>
<element name="StrLScan.MaxLen">
<short>Maximum number of characters examined in the routine.</short>
</element>
<element name="LazIsValidIdent">
<short>This is a copy of IsValidIdent from the FPC 3.1 FCL library.</short>
<descr>
<p>
<var>LazIsValidIdent</var> is a <var>Boolean</var> function used to determine if the name specified in <var>Ident</var> contains a valid identifier name. The identifier name can represent a Namespace, Package, Unit, Component, or a Member.
</p>
<p>
The return value is <b>True</b> when Ident contains a valid identifier name using the Pascal naming convention. The return value is <b>False</b> if Ident contains an empty string ('').
</p>
<p>
<var>AllowDots</var> indicates whether Period ('.') characters are allowed in the identifier name. The default value for the argument is <b>False</b> (not allowed).
</p>
<p>
<var>StrictDots</var> indicates whether a Period character in the identifier name causes name validation to restart at the next character in the identifier name. When set to <b>False</b>, a Period character is ignored during identifier name validation. The default value for the argument is <b>False</b>, and is significant only when AllowDots is set to <b>True</b>.
</p>
<p>
LazIsValidIdent examines each of the characters in Ident to ensure that the value uses the Pascal identifier naming convention. This requires the value to contain only alphanumeric characters or the Underscore ('_') character. It must start with an alphabetic character or the Underscore character; numeric characters cannot be used at the start of the identifier name. The remaining characters in the identifier name can be any alphanumeric character.
</p>
<p>
Case is not significant when determining the validity of an identifier name.
</p>
<p>
LazIsValidIdent is used in the implementation of various tools in the Lazarus IDE. (IDEIntf, CodeTools, BuildIntf)
</p>
<remark>
Use the IsValidIdent routine from FPC 3.2.X when version 3.2 is the minimum requirement.
</remark>
</descr>
<seealso>
<link id="#rtl.sysutils.IsValidIdent">IsValidIdent</link>
</seealso>
</element>
<element name="LazIsValidIdent.Result">
<short>True if the specified value is a valid identifier name.</short>
</element>
<element name="LazIsValidIdent.Ident">
<short>Identifier name examined in the routine.</short>
</element>
<element name="LazIsValidIdent.AllowDots">
<short>True if period characters are allowed in the identifier name.</short>
</element>
<element name="LazIsValidIdent.StrictDots">
<short>True if the position of a period character is validated.</short>
</element>
<element name="MaxTextLen">
<short>Defines the maximum length for shortened or "ellipsified" text.</short>
<descr>
<p>
Used in the <var>ShortDotsLine</var> routine.
</p>
</descr>
<seealso>
<link id="ShortDotsLine"/>
</seealso>
</element>
</module>
<!-- LazStringUtils -->
</package>
</fpdoc-descriptions>
|