PStrCat (LabVIEW Manager Function)
- 更新时间2025-07-30
- 阅读时长2分钟
int32 PStrCat(s1, s2);
Purpose
Concatenates a Pascal string, s2, to the end of another Pascal string, s1, and returns the result in s1. This function assumes s1 is large enough to contain the resulting string. If the resulting string is larger than 255 characters, the function limits the resulting string to 255 characters.
Parameters
| Name | Type | Description |
|---|---|---|
| s1 | PStr | Pointer to a Pascal string. |
| s2 | PStr | Pointer to a Pascal string. |
Return Value
The length of the resulting string.