View Single Post
  #12  
Old 21-06-2020, 11:37
bunti_o4u's Avatar
bunti_o4u bunti_o4u is offline
Registered User
 
Join Date: Aug 2017
Location: India
Posts: 162
Thanks: 29
Thanked 172 Times in 61 Posts
bunti_o4u is on a distinguished road
Quote:
Originally Posted by Cesar82 View Post
Code:
S1 := '<0420><0443><0441><0441><043A><0438><0439>';
From this string above I need to return: "Русский"
I hope you want this...

BTW if you are on discord pl add me (discord id: buntionly4u#4466)
Code:
function InitializeSetup(): Boolean;
var
  S1, S2: String;
begin
  S1 := #$0420+#$0443+#$0441+#$0441+#$043A+#$0438+#$0439;
  MsgBox(S1, mbInformation, MB_OK);
end;
Attached Images
File Type: png Untitled.png (1.6 KB, 67 views)

Last edited by bunti_o4u; 21-06-2020 at 11:43.
Reply With Quote