Posts by eduardo montanger • 16 points
1 post
-
0
votes2
answers521
viewsA: Convert from String to Integer in Pascal
There is the 'Strtoint' function in Pascal, as an example below: var A : Integer; Begin Try A := Strtoint('100 '); // Converts String '100' to integer 100. except on Exception : Econverterror do…