pascalabcnet/InstallerSamples/WhatsNew/3_7_2/ToWordsStrDelim.pas
2022-04-18 21:34:18 +03:00

7 lines
175 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Метод строк .ToWords со строкой, содержащей разделители
begin
var s := '123.4, 6.6; 67';
s.ToWords(' ,;').PrintLines
end.