Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
Android
»
A note for those using their own language ...
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
[solved] macro for code ?
by
TBMan
[
Today
at 12:22:24 am]
MVP made easier.
by
cdbc
[April 23, 2025, 11:51:34 pm]
FPC 3.2.2 + Lazarus 3.4 C...
by
paule32
[April 23, 2025, 11:18:59 pm]
FPC 3.2.2 using Result wi...
by
paule32
[April 23, 2025, 11:16:52 pm]
FPC 3.2.2 - maximum Lengt...
by
paule32
[April 23, 2025, 11:09:57 pm]
debugger not showing vari...
by
rohran
[April 23, 2025, 11:05:01 pm]
Knob Finger Spinner Graph...
by
circular
[April 23, 2025, 10:15:44 pm]
Snaking ZigZag Curve: PRO...
by
Handoko
[April 23, 2025, 10:12:04 pm]
Library: Embed DLL in EXE
by
Tomxe
[April 23, 2025, 09:57:37 pm]
Writing a TMemo widget fr...
by
paule32
[April 23, 2025, 08:38:32 pm]
ChatGPT and algorithms
by
TBMan
[April 23, 2025, 06:18:46 pm]
Deleting exe-file not wor...
by
d2010
[April 23, 2025, 06:14:27 pm]
Named range
by
Thaddy
[April 23, 2025, 05:22:17 pm]
Math.RoundTo incorrect so...
by
BeniBela
[April 23, 2025, 04:07:40 pm]
2d "platform" game sugges...
by
TBMan
[April 23, 2025, 03:47:29 pm]
Rain Simulator
by
Boleeman
[April 23, 2025, 02:57:30 pm]
Turbo Pascal's default fo...
by
Thaddy
[April 23, 2025, 02:34:28 pm]
Amigo programming languag...
by
paxscript
[April 23, 2025, 02:07:13 pm]
More AI hype?
by
Joanna from IRC
[April 23, 2025, 02:01:16 pm]
I didn't expect this
by
simone
[April 23, 2025, 01:40:01 pm]
Reading axis range after ...
by
wp
[April 23, 2025, 11:41:42 am]
Testing with SQLite3DataS...
by
CharlyTango
[April 23, 2025, 10:55:38 am]
Detecting symbol correspo...
by
Tommi
[April 23, 2025, 10:13:27 am]
[SOLVED] WebP images and ...
by
circular
[April 23, 2025, 09:29:34 am]
[SOLVED] How to "Jump To"...
by
Markus
[April 23, 2025, 09:24:57 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: A note for those using their own language ... (Read 1758 times)
shyub
Full Member
Posts: 142
A note for those using their own language ...
«
on:
April 08, 2021, 10:05:08 am »
In Russian, the separation of the integer part of the number from the fractional part is indicated by a comma, in English - by a dot.
The "StrToFloat" function, unlike Windows, considers a comma to be an error.
«
Last Edit: April 08, 2021, 10:07:20 am by shyub
»
Logged
shyub
Full Member
Posts: 142
Re: A note for those using their own language ...
«
Reply #1 on:
April 08, 2021, 10:21:43 am »
Just in case, I do it like this:
Code: Pascal
[Select]
[+]
[-]
procedure
TAndroidModule1
.
AndroidModule1JNIPrompt
(
Sender
:
TObject
)
;
var
f
:
Single
=
1.2
;
S
:
String
;
begin
.........
S
:
=
FloatToStr
(
f
)
;
Znak
:
=
S
[
2
]
;
.........
end
;
Wherever you need it ...
Code: Pascal
[Select]
[+]
[-]
...........
k
:
=
Pos
(
'.'
,
S
)
;
if
k<>
0
then
S
[
k
]
:
=
Znak
;
end
;
Result
:
=
S
;
end
;
Logged
Handoko
Hero Member
Posts: 5401
My goal: build my own game engine using Lazarus
Re: A note for those using their own language ...
«
Reply #2 on:
April 08, 2021, 10:28:47 am »
My country use comma as decimal separator too.
Maybe you don't know you can 'tell' StrToFloat to use what character as decimal separator. This code below causes no error, just warnings on compile-time. Tested on Lazarus 2.0.10.
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button1Click
(
Sender
:
TObject
)
;
var
S
:
string
;
begin
S
:
=
'1.2'
;
DecimalSeparator
:
=
'.'
;
ShowMessage
(
StrToFloat
(
S
)
.
ToString
)
;
S
:
=
'1,2'
;
DecimalSeparator
:
=
','
;
ShowMessage
(
StrToFloat
(
S
)
.
ToString
)
;
S
:
=
'1*2'
;
DecimalSeparator
:
=
'*'
;
ShowMessage
(
StrToFloat
(
S
)
.
ToString
)
;
end
;
If you interested to learn more, check the documentation.
«
Last Edit: April 08, 2021, 10:35:16 am by Handoko
»
Logged
shyub
Full Member
Posts: 142
Re: A note for those using their own language ...
«
Reply #3 on:
April 08, 2021, 10:32:10 am »
Thank you!
Didn't know it worked on Android.
Logged
white_zombie
New Member
Posts: 18
Re: A note for those using their own language ...
«
Reply #4 on:
April 08, 2021, 10:36:21 am »
In my country (Spain), the decimal separator is also the comma.
The function "FloatToStr" has an overload where you can specified the format settings, see the next links.
https://www.freepascal.org/docs-html/rtl/sysutils/floattostr.html
https://www.freepascal.org/docs-html/rtl/sysutils/tformatsettings.html
Best Regards
Logged
marcov
Administrator
Hero Member
Posts: 12152
FPC developer.
Re: A note for those using their own language ...
«
Reply #5 on:
April 08, 2021, 10:42:58 am »
On *nix (and Android is unixy) you need to add unit clocale as first unit (or at least early) of your mainprogram to enable loading the system locale.
I don't know in how far this is implemented for android, but you could try
«
Last Edit: April 08, 2021, 10:51:11 am by marcov
»
Logged
shyub
Full Member
Posts: 142
Re: A note for those using their own language ...
«
Reply #6 on:
April 08, 2021, 10:44:52 am »
Thank you!
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
Android
»
A note for those using their own language ...
TinyPortal
© 2005-2018