Idea
1
Replies
51
Views
LTI
Posted: August 28, 2020
Last activity: August 30, 2020
Set fixed length String irrespective of number of characters in Property
Idea:
If you have a requirement where you need to pass a string of fixed length irrespective of characters in property to External system
Or
You need to generate a file with fixed String irrespective of characters in property.
Please find attachment for scenario and Implementation
Hi Arun,
Good work, but we already have method avilable in Java String utility. Did you face any issues with this method??
StringUtils.leftPad(SourceString, size,padChar);
StringUtils.rightPad(SourceString, size,padChar);
More information https://howtodoinjava.com/java/string/right-pad-string-with-spaces-zeros/
Thanks
Krishna