Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
My requirement is to add a space at end of the string to every row in a column
My input
Pediatric Associates, LLP
and Expected output
Pediatric Associates, LLP
In above output space to be added at the end of the string
Can any have give an idea how to achieve my requirement?
same thing ( Only on Last Column)
in tjavarow
output_row.str = input_row.str + " ";
in tMap
row1.str + " "
String str = "abc;
str = str + " ";
@uganesh thanks
Where can this be done , in tMap or tJavarow?
same thing ( Only on Last Column)
in tjavarow
output_row.str = input_row.str + " ";
in tMap
row1.str + " "
thanks @uganesh it worked as per my requirement, Am doing camel casing for a strings, if the extension is CO
example before i had
Walgreens COunty CO
As it is checking for one space in and CO i wanted to add space at the end, and then changed code to find space CO space, now it worked exactly as per requirement.
Inially added space, later trimmed at the space at the end it worked fine
After this the result is
Walgreens County CO