' '
[inline]
Definition at line 122 of file String.h.
00123 { 00124 if (src.length() >= width) 00125 return src.substr(0, width); 00126 String res = src; 00127 for (int i=src.length() ; i<width ; i++) 00128 res.push_back(fill); 00129 return res; 00130 }