Giter Club home page Giter Club logo

Comments (3)

maxkleiner avatar maxkleiner commented on August 11, 2024

or

function ByteToString(var Value: TBytes): String;  // var and const OK!
var I: integer;
   S : String;
   Letra: char;
begin
   S := '';
   for I := Length(Value)-1 Downto 0 do begin
       letra := Chr(Value[I] + 48);
       S := letra + S;
   end;
   Result := S;
end;

from maxbox4.

maxkleiner avatar maxkleiner commented on August 11, 2024

Func StrToBytes(const Value:Str): TBytes;
Func BytesToStr(const Value: TBytes):Str;
Func GetBytes(value:Str): TBytes;
Func GetBytesInt(value: Smallint): TBytes;
Function StreamToBytes( const ASource : TStream) : TBytes');

from maxbox4.

maxkleiner avatar maxkleiner commented on August 11, 2024

9 flcSysUtils.pas //2 functions with cwindows possible + freqObj +TBytes utils
Func AnsiBytesOf(const S:Str): TBytes;
Func GetBytes(value:Str): TBytes;
Func GetBytesInt(value: Smallint): TBytes;
Func AnsiByteArrayStringLen2(Data: TBytes): Integer;
Func StringToAnsiByteArray2(const S:Str): TBytes;
Func AnsiByteArrayToString2(const Data: TBytes; Count: Integer):Str;
Func BytesOf(const Value: Ansistr): TBytes;
Func BytesOfChar(const Value: AnsiChar): TBytes;
Func StringOf(const Bytes: array of Byte): Ansistr;

from maxbox4.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.