The following code:
function get_symbol (var s: String): String; var c: Char; p: Int32; begin
causes the following error message:
[dcc32 Warning] fmx_utilities_string.pas(188): W1000 Symbol 'IsDigit' is deprecated: 'Use TCharHelper'
I do not understand this message because System.Character is included, c is declared as Char, and TCharhelper is declared as an auxiliary character of the Char character. What am I doing wrong?
source share