0
Enthusiast
,
/t5/indesign-discussions/how-concat-string-and-number/td-p/8424376
Jun 22, 2016
Jun 22, 2016
Copy link to clipboard
Copied
This is my code:
PMString strLabel="TXT-" + 1;
But result ="TXT-".
How concat String and Number?
TOPICS
SDK
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Enthusiast
,
Jun 22, 2016
Jun 22, 2016
Hi daitranthanhoa,
PMString has a function AppendNumber.
Markus
Enthusiast
,
/t5/indesign-discussions/how-concat-string-and-number/m-p/8424377#M164141
Jun 22, 2016
Jun 22, 2016
Copy link to clipboard
Copied
Hi daitranthanhoa,
PMString has a function AppendNumber.
Markus
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Engaged
,
LATEST
/t5/indesign-discussions/how-concat-string-and-number/m-p/8424378#M164142
Jun 22, 2016
Jun 22, 2016
Copy link to clipboard
Copied
PMString strLabel("TXT-");
strLabel.AppendNumber(1);
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

