Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我设法在我的字符串指示器中放置了文本,但我想知道的是如何在不删除先前文本的情况下向其中添加文本。我尝试在网上搜索,但找不到任何有用的东西。
您可以通过使用局部变量重用其值,然后输入concatenate strings.
concatenate strings
您可以使用Concatenate Strings将两个不同的字符串添加到一个字符串中。然后您仍然可以使用第一个字符串而无需任何更改。
Concatenate Strings
来自 NI 帮助的示例
对于指标或控件,您还可以使用Append String如下函数:
Append String
...然后将要附加的字符串连接到该函数的输入:
最终结果与使用Concatenate Strings其他人提到的相同,但可能更优雅,因为不需要在框图上连接原始值。
连接字符串允许您连接多个字符串和字符串数组。
Append String 方法似乎只允许您将单个字符串连接到字符串控件。我猜它更有效,并且在循环中使用更好。