Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
RAP
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
Substring
rbuser
March 2010
edited March 2010
in
RAP
I have a field with about 11 characters. I want to retrieve the character
in the 10th position. I'm doing this in the report generation. Is there
perhaps a substring command?
John
Comments
nicocizik
March 2010
edited March 2010
Hi John,
You should be able to use the Copy routine in RAP to get the result you
need. Something like the following...
lTenthChar := Copy(MyString, 10, 1);
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Best Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
rbuser
March 2010
edited March 2010
okay. Great. Thank you.
John
This discussion has been closed.
Comments
You should be able to use the Copy routine in RAP to get the result you
need. Something like the following...
lTenthChar := Copy(MyString, 10, 1);
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
John