vote up 1 vote down star

Hi all,

is there a counterpart of the Delete procedure that could be used for widestrings? Or should I just use copy and concatenate the resulting WideStrings?

flag

2 Answers

vote up 3 vote down check

Delete is a "compiler magic" function. The compiler uses its knowledge of the basic data type to handle the operation appropriately. For most arrays, it can simply translate the information you write in your code into the actual offset and number of bytes that need to be deleted, and passes that to the _Delete assembly routine instead. For WideStrings, as Alexander pointed out, it's got a special _WStrDelete routine.

Bottom line: If you can pass an array or string to Delete and it compiles, it should run just fine.

link|flag
haha, I just love that answer - especially that Delphi does implicit conversion from String to WideString, whenever there is no overloaded version of the function... – Bartosz Radaczyński Aug 31 at 13:11
vote up 3 vote down

Internal RTL functions like Delete, Insert, Length, etc works both for Ansi and Wide strings.

For example, Delete call on WideString is transformed into WStrDelete call (see System.pas).

link|flag
are you sure about that? in delphi 2006 it is just an assembler function... – Bartosz Radaczyński Aug 26 at 10:28
1  
Yes, I'm pretty sure about it - just checked it right now in D2006. Delete for String (AnsiString) is converted into LStrDelete call and Delete for WideString is converted into WStrDelete call (see CPU view). – Alexander Aug 26 at 13:12
yeah, OK, I noticed that in the meantime as well, but thanks anyway. – Bartosz Radaczyński Aug 26 at 18:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.