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
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Pocketbase
by
steve612
[
Today
at 05:50:42 pm]
CONCAT formula
by
veb86
[
Today
at 05:20:42 pm]
Hello! Anything new?
by
LeP
[
Today
at 03:07:25 pm]
DataPort StopBits and Flo...
by
Thaddy
[
Today
at 02:14:16 pm]
TChart: Wrong default val...
by
wp
[
Today
at 02:03:58 pm]
GTK3 : Icons have borders...
by
theo
[
Today
at 01:55:45 pm]
Problem with drawing orde...
by
VisualLab
[
Today
at 12:28:20 pm]
Lazarus Bugfix Release 4....
by
JuhaManninen
[
Today
at 10:05:03 am]
88 year D. Knuth changes ...
by
Thaddy
[
Today
at 07:31:38 am]
Any way to "embed" Window...
by
egsuh
[
Today
at 06:54:51 am]
could Ardour's YTK be use...
by
dbannon
[
Today
at 05:20:21 am]
interface and GUID someth...
by
egsuh
[
Today
at 03:31:00 am]
CADSys4 3D.
by
maurog
[
Today
at 01:00:05 am]
Questions about TFuncSeri...
by
wp
[
Today
at 12:36:23 am]
UOS - pre-compiled librar...
by
Fred vS
[
Today
at 12:34:06 am]
Pipewire API
by
Fred vS
[March 12, 2026, 10:11:02 pm]
TSplitter color property ...
by
valdir.marcos
[March 12, 2026, 09:20:11 pm]
ShortStrings vs long stri...
by
valdir.marcos
[March 12, 2026, 08:55:02 pm]
LazPaint (alpha-blending,...
by
CM630
[March 12, 2026, 08:38:30 pm]
Z80 ZX Spectrum and Syste...
by
d2010
[March 12, 2026, 07:58:28 pm]
Qt6/Wayland clipboard: pa...
by
valdir.marcos
[March 12, 2026, 06:27:22 pm]
[ANN] PasBuild 1.5.0 rele...
by
valdir.marcos
[March 12, 2026, 06:19:54 pm]
Synchronizing Lazarus pro...
by
valdir.marcos
[March 12, 2026, 05:46:58 pm]
class not found
by
SA.Blackmon
[March 12, 2026, 05:27:32 pm]
Register global hotkey
by
Thaddy
[March 12, 2026, 04:20:28 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: A note for those using their own language ... (Read 1879 times)
shyub
Full Member
Posts: 144
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: 144
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: 5524
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: 144
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: 12715
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: 144
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