本站首页    管理页面    写新日志    退出


«April 2026»
1234
567891011
12131415161718
19202122232425
2627282930


公告
================

注会练习软件
http://www.cpasoft.com.cn
我的注会软件官网

http://blog.163.com/abc7105@126/

 

 


哈哈,热爱快“过气”的DELPHI


我的分类(专题)

日志更新

最新评论

留言板

链接

Blog信息
blog名称:注册会计师(注会)练习软件
日志总数:398
评论数量:116
留言数量:27
访问次数:3302143
建立时间:2005年6月6日




[delpih编程]用 TStringList 模拟 "将字符串转换为变量的功能" 【转自万一博客】
软件技术

吕向阳 发表于 2009/6/11 21:00:55

用 TStringList 模拟 "将字符串转换为变量的功能" - 回复 "flq_00000" 和 "外来天客" 的问题 问题来源: http://www.cnblogs.com/del/archive/2008/09/03/989467.html#1306651--------------------------------------------------------------------------------unit Unit1;interfaceusesWindows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,Dialogs;typeTForm1 = class(TForm)procedure FormCreate(Sender: TObject);end;varForm1: TForm1;implementation{$R *.dfm}procedure TForm1.FormCreate(Sender: TObject);conststr1 = 'aaa';str2 = 'bbb';varList: TStrings;beginList := TStringList.Create;List.Add(str1 + '=123');List.Add(str2 + '=456');ShowMessage(List.Values['aaa']); {123}ShowMessage(List.Values['bbb']); {456}List.Free;end;end.


阅读全文(1157) | 回复(0) | 编辑 | 精华
 



发表评论:
昵称:
密码:
主页:
标题:
验证码:  (不区分大小写,请仔细填写,输错需重写评论内容!)



站点首页 | 联系我们 | 博客注册 | 博客登陆

Sponsored By W3CHINA
W3CHINA Blog 0.8 Processed in 0.048 second(s), page refreshed 144818978 times.
《全国人大常委会关于维护互联网安全的决定》  《计算机信息网络国际联网安全保护管理办法》
苏ICP备05006046号