Источник:
http://www.axaptapedia.com/StrRfix
==============
Summary: New page: ===Syntax=== str strRfix(str _str, int _lenght [, char _char]) ===Description=== Add character _char before string _str to obtain a string long _leng. Default filler chararc...
===Syntax===
str strRfix(str _str, int _lenght [, char _char])
===Description===
Add character _char before string _str to obtain a string long _leng.
Default filler chararcer is ' '.
If _str is longer than _leght function return a substring of _str.
===Example===
strRfix('aaa', 5, '_')
//returns the text string '__aaa'.
==See also==
* [[strLfix]]
* [[strRep]]
[[Category:String]]
Источник:
http://www.axaptapedia.com/StrRfix