我有两个字符串,我需要比较它们是否相等。
字符串 1 是这样创建的:
var
inBuf: array[0..IN_BUF_SIZE] of WideChar;
stringBuilder : TStringBuilder;
mystring1:string;
...
begin
stringBuilder := TStringBuilder.Create;
for i := startOfInterestingPart to endOfInterestingPart do
begin
stringBuilder.Append(inBuf[i]);
end;
mystring1 := stringBuilder.ToString();
stringBuilder.Free;
字符串 2 是一个常量字符串'ABC'
。
当字符串 1 显示在调试控制台中时,它等于 'ABC'。但是对比
AnsiCompareText(mystring1, 'ABC')
mystring1 = 'ABC'
CompareStr(mystring1, 'ABC')
所有报告不平等。
我想我需要将字符串 2 ( 'ABC'
) 转换为与字符串 1 相同的类型。
我怎样才能做到这一点?
2012 年 9 月 26 日更新:
aMessage
在日志输出中显示为 {FDI-MSG-START-Init-FDI-MSG-END}
这是打印字符串长度的代码:
StringToWideChar('{FDI-MSG-START-Init-FDI-MSG-END}', convString, iNewSize);
...
OutputDebugString(PChar('Len (aMessage): ' + IntToStr(Length(aMessage))));
OutputDebugString(PChar('Len (original constant): ' + IntToStr(Length('{FDI-MSG-START-Init-FDI-MSG-END}'))));
OutputDebugString(PChar('Len (convString): ' + IntToStr(Length(convString))));
这是日志输出:
[3580] Len (aMessage): 40
[3580] Len (original constant): 32
[3580] Len (convString): 0