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 243857
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:57:23+00:00 2026-05-11T20:57:23+00:00

my problem is as follows: WideCompareStr(FName,”)<>0 returns false even with FName set to ”.

  • 0

my problem is as follows:

WideCompareStr(FName,'')<>0

returns false even with FName set to ”.

WideCompareStr(trim(FName),'')<>0

returns the desired result. Why do I have to trim an empty string (”) for a comparison with another empty sting to get the correct result?


EDIT:

to clear things up:
I had the following Code to test wether a widestring-variable is the empty string or not.

function TSybVerwandlung.isEmpty: Boolean;
var
  I : Integer;
begin
  Result:=true;
  if WideCompareStr(FName,'')<>0 then Result:=false
  else if WideCompareStr(FInfo,'')<>0 then Result:=false
  else
  begin
    //additional tests
  end;
end;

This function returned true even with FName set to ” (I checked it in the debugger). After inserting trim(FName) and trim(FInfo) instead of the variables, it returned the desired result.

Did I miss something essential? The compiler I use is Borland Delphi 2006

  • 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-11T20:57:23+00:00Added an answer on May 11, 2026 at 8:57 pm

    WideCompareStr returns 0 if both strings are equal. So code:

    WideCompareStr(FName,'')<>0
    

    Returns false because both strings ARE equal which is what you are expecting (I guess!).

    EDIT:

    I am confused now. I just checked and in following code:

    procedure TForm1.Button1Click(Sender: TObject);
    var
      s1: WideString;
      r1, r2: Integer;
    begin
      s1 := '';
    
      r1 := WideCompareStr (s1, '');
      MessageDlg (IntToStr (r1), mtWarning, [mbOK], 0);
    
      r2 := WideCompareStr (Trim (s1), '');
      MessageDlg (IntToStr (r2), mtWarning, [mbOK], 0);
    end;
    

    Both r1 and r2 are zero which is as expected. And your second line is actually a syntax error (Trim can receive only one parameter).

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

Sidebar

Ask A Question

Stats

  • Questions 124k
  • Answers 124k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Basically, you want to make a table for the user… May 12, 2026 at 1:19 am
  • Editorial Team
    Editorial Team added an answer You need to set user.language and user.region appropriately, e.g. java… May 12, 2026 at 1:19 am
  • Editorial Team
    Editorial Team added an answer (This answer evolved as the OP provided more code. This… May 12, 2026 at 1:19 am

Related Questions

my problem is as follows: WideCompareStr(FName,'')<>0 returns false even with FName set to ''.
My problem is as follows. I have a system to create accounts. However, different
I have a simple form that is used to update an entity in my
I'm using this in conjunction with the tablesorter plug-in, my goal is to have
I plan to use the Quartz scheduler as I read many good opinions about

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.