Hi, I have a variable that is made up of 15 letters, sometimes less. I have to put that text into string format with a fixed length of 17, left justify it and then pad the leading portion with blank spaces, for those which are 15 letters or less. For example: Var1= AAAAAAA I want to let Var 2 = "AAAAAAA " I need this because I will concatenate variables and I need the blanks, for Example: Var 2 = "AAAAAAA ", Var 3= x, Var 4 = z I need -----> VarFinally= "AAAAAAA xz" Any suggestion welcome. Thanks
... View more