hii every body
<Table>
<COSTUMER_NAME>praveen</COSTUMER_NAME>
</Table>
praveen (string length) = 7
we dont know the string length of COSTUMER_NAME some times it may be less than 35
or it was be exactly 35
if the string length was less than be 35 then we need replace as space other than remaining string length part
Output: if i hv recieved string as praveen
string length was “7“
so then remaining 28 character should be replaced as space
I think this should do it:
There are 35 white space characters there as the argument to the concat function. So it concatenates your string and 35 space characters, then takes a substring from it of the first 35 characters, so extra whitespace is lost