View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0033079 | FPC | RTL | public | 2018-01-26 16:35 | 2018-06-17 19:30 |
Reporter | rd0x | Assigned To | Michael Van Canneyt | ||
Priority | normal | Severity | minor | Reproducibility | N/A |
Status | closed | Resolution | fixed | ||
Product Version | 3.0.2 | Product Build | |||
Target Version | 3.2.0 | Fixed in Version | 3.1.1 | ||
Summary | 0033079: Missing IndexText function from Delphi | ||||
Description | There is a IndexStr function which is equivalent to Delphi's IndexStr. But the case insenstive IndexText function from Delphi is missing in FPC. Error: Identifier not found "IndexText" | ||||
Steps To Reproduce | Program IndexText_missing; {$MODE DelphiUnicode} uses StrUtils; var Input: string = 'test2'; ArrayOfString: array[0..2] of String = ('Test1', 'test2', 'test3'); begin // this one is already there if IndexStr(Input, ArrayOfString) > -1 then writeln('Hello World!'); // this one is missing if IndexText(Input, ArrayOfString) > -1 then writeln('Hello World!'); end. | ||||
Tags | Feature, Request | ||||
Fixed in Revision | 38062 | ||||
FPCOldBugId | |||||
FPCTarget | |||||
Attached Files |
|
Date Modified | Username | Field | Change |
---|---|---|---|
2018-01-26 16:35 | rd0x | New Issue | |
2018-01-26 16:36 | rd0x | Tag Attached: Feature | |
2018-01-26 16:36 | rd0x | Tag Attached: Request | |
2018-01-26 16:53 | Marco van de Voort | Note Added: 0106051 | |
2018-01-28 10:29 | Michael Van Canneyt | Fixed in Revision | => 38062 |
2018-01-28 10:29 | Michael Van Canneyt | Note Added: 0106085 | |
2018-01-28 10:29 | Michael Van Canneyt | Status | new => resolved |
2018-01-28 10:29 | Michael Van Canneyt | Fixed in Version | => 3.1.1 |
2018-01-28 10:29 | Michael Van Canneyt | Resolution | open => fixed |
2018-01-28 10:29 | Michael Van Canneyt | Assigned To | => Michael Van Canneyt |
2018-01-28 10:29 | Michael Van Canneyt | Target Version | => 3.2.0 |
2018-06-17 19:30 | rd0x | Status | resolved => closed |