Solution 1
Local String &str; Local String &prefix = "Mr." Local String &lName = "Jones" &str = "Hello " | &prefix | " " | &lname | ". Welcome to Peoplecode.";
Solution 2
Local String &str; Local String &prefix = "Mr." Local String &lName = "Jones" &str = MsgGetText(0, 0, "Hello %1 %2. Welcome to Peoplecode.", &prefix, &lname);
Both solutions would output in the follow format:
Hello Mr. Jones. Welcome to Peoplecode.
No comments:
Post a Comment