View Single Post
  #2 (permalink)  
Old 11-16-2007, 09:27 PM
rajiv_bang rajiv_bang is offline
Member
 
Join Date: Nov 2007
Posts: 11
rajiv_bang is on a distinguished road
Hi,

The format specifier is of type
%[argument_index$][flags][width]conversion
Hence in %1$

1$ = indicates the first argument ie "MyName"
flags = - (left justify)
width = 10
conversion = s (string)

Please let me know if I was not clear enough.
Reply With Quote