- This topic has 2 replies, 2 voices, and was last updated 8 years, 1 month ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Integrated Application Platform
Integrated Application Platform › Forums › General › ?Error in Display
Hi All,
ob = #("A", "B")
Display(ob[0]) $ Display(ob[1])
is giving the result : ‘”A””B”‘
Shouldn’t it be giving ‘AB’ ? Am I wrong?
ajith
I think it is working correctly.
Is there a reason you are using Display? It will add quotes to strings, and then when the result is displayed it will also add a set of quotes.
Based on your expected result I think you just want: ob[0] $ ob[1]
Hi,
Thanks for clarifying that.
Some how I was under the impression that Display wont add additional quotes if its argument was a String. Yes, I am using ob[0]$ob[1]
ajith