concatenation
hello,
I want to know if the following code is the right syntax for fields concatenation:
The result I need is: string + field1 + string + field2 + string
I ask this question because I am confused with the square bracket and angle bracket.
regards
I want to know if the following code is the right syntax for fields concatenation:
begin_text [<frxDBDataset20."CLNOM">] middle_text [<frxDBDataset20."CLCODE">] end_text
The result I need is: string + field1 + string + field2 + string
I ask this question because I am confused with the square bracket and angle bracket.
regards
Comments
begin_text [<frxDBDataset20."CLNOM">] middle_text [<frxDBDataset20."CLCODE">] end_text
or
begin_text [frxDBDataset20."CLNOM"] middle_text [frxDBDataset20."CLCODE"] end_text
In script you should use
begin_text + <frxDBDataset20."CLNOM"> + middle_text + <frxDBDataset20."CLCODE"> + end_text