Converts lowercase to uppercase.

Source: Internet
Author: User
When writing a paid software, I used a function that converts the lower-case amount to the upper-case amount. I found a function written on the Internet using PowerBuilder, which is huge in 40 or 50 rows, later, I wrote a function using Delphi and completed it with just a few lines of code:
Function tform1.xtodd (I: Real): string;
Const
D = '0, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4 ';
VaR
M, K: string;
J: integer;
Begin
K: = '';
M: = floattostr (INT (I * 100 ));
For J: = length (m) downto 1 do
K: = K + d [(strtoint (M [length (M)-J + 1]) + 1) * 2-1] +
D [(strtoint (M [length (M)-J + 1]) + 1) * 2] + d [(10 + J) * 2-1] + d [(10 + J) * 2];
Xtodd: = K;
End;

Call:
Procedure tform1.button1click (Sender: tobject );
VaR
Sum: real;
Begin
Sum: = 12.34;
Showmessage ('renminbi capital: '+ xtodd (SUM ));
End;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.