我需要在 xml 中的变量中获取剪贴板文本,是否有任何函数可以连接到剪贴板并使用这些值,是否可以这样做?
我想这样做的原因是为了帮助我在 delphi(或 c++ builder)中更快地编程,而 xml 只是模板。
这是示例
<?xml version="1.0" encoding="utf-8" ?>
<codetemplate xmlns="http://schemas.borland.com/Delphi/2005/codetemplates"
version="1.0.0">
<template name="if" surround="true" invoke="auto">
<point name="expr">
<script language="C">
invoke_code_completion();
</script>
<hint>
conditional expression
</hint>
<text>
true
</text>
</point>
<description>
if statement
</description>
<author>
Embarcadero
</author>
<code language="C" context="methodbody"><![CDATA[if ($expr$) {
$selected$$*$$end$
}
]]>
</code>
</template>
</codetemplate>
这将产生if (true) { }专注于true,我需要的是你使用一些剪贴板文本而不是 word true 。