Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6672405
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:30:15+00:00 2026-05-26T03:30:15+00:00

I am tidying old code that used to use FastStrings and I’ve implemented an

  • 0

I am tidying old code that used to use FastStrings and I’ve implemented an old routine of mine ‘PosAnyCase’ which should operate like ‘Pos’. (I was hoping that SearchBuf was better than calling UpperCase on both strings).

function PosAnyCase( const AFindStr, AStr : string ) : integer;
// Returns the position of this substring within a string ignoring case

I’m using SearchBuf as follows:

function PosAnyCase( const AFindStr, AStr : string ) : integer;
// Returns the position of this substring within a string ignoring case
var
  Start, ResultPos : PChar;
begin
  Start := PChar( AStr );

  ResultPos := SearchBuf(
    Start, ByteLength( AStr ),
    0, 0,
    AFindStr, [soDown] );

  if ResultPos = nil then
    Result := 0
   else
    Result := ResultPos-Start+1;
end;

When I call this routine from my unit tests, the following tests PASS:

  Check(
    PosAnyCase( '', '123' ) = 0 );
  Check(
    PosAnyCase( '2', '123' ) = 2 );
  Check(
    PosAnyCase( 'A', 'ABC' ) = 1 );
  Check(
    PosAnyCase( 'a', 'ABC' ) = 1 );
  Check(
    PosAnyCase( 'the', 'hellot there' ) = 8 );
  Check(
    PosAnyCase( 'THE', 'hellot there' ) = 8 );

But this test FAILS:

Check(
    PosAnyCase( 'nice', 'does not have n i c e' ) = 0 );

What am I doing wrong please? The documentation on SearchBuf is very limited….
Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T03:30:16+00:00Added an answer on May 26, 2026 at 3:30 am

    The call to ByteLength is incorrect. Although the documentation explicitly states that the parameter is the length in bytes, that is not the case. You should use Length instead because the function actually expects units of char rather than units of byte.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently refactoring/tidying up some old C code used in a C++ project, and
I'm tidying up some older code that uses 'magic numbers' all over the place
Tidying up some code that has what I consider to be a confusing line
I am tidying up my ancient Cocoa code to use modern naming conventions. There
I'm tidying up some of my code with the correct scope on some methods
I was just tidying up some code when I found this region in the
I have a php variable that comes from a form that needs tidying up.
I'm wondering if there are any reasons (apart from tidying up source code) why
I've recently seen some code similar to that outlined below. public void someMethod() {
I was tidying up some code I wrote a long time ago, putting it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.