点击或拖拽改变大小

Functions.StrEvaluate 方法

X#
允许在运行时对字符串进行文本替换。

命名空间:  XSharp.RT
程序集:  XSharp.RT (在 XSharp.RT.dll 中) 版本:2.22 GA
语法
[NeedsAccessToLocalsAttribute(FALSE)]
 FUNCTION StrEvaluate(
	cString AS STRING
) AS STRING
查看代码

参数

cString
类型:String
包含一个或多个宏变量的字符串。

返回值

类型:String
所有宏替换完成后的新字符串。
备注
示例
此示例演示了在运行时对包含宏变量的字符串使用 StrEvaluate():
X#
1MEMVAR cOne
2LOCAL cTwo AS STRING
3cOne := "世界"
4ACCEPT "输入宏字符串 " TO cTwo
5// 如果你输入 "你好 &cOne"(不带引号)
6? cTwo                        // 结果: "你好 &cOne"
7? StrEvaluate(cTwo)            // 结果: "你好 世界"
参见