* bin/commit.hb
* config/detect.mk
* config/detfun.mk
* config/detplat.mk
* config/dir.mk
* config/dirsh.mk
* config/global.mk
* config/globsh.mk
* config/instsh.mk
* config/lang.hb
* config/lang2po.hb
* config/po2lang.hb
* config/postinst.hb
* contrib/hbexpat/tests/tohash.prg
* contrib/hbformat/utils/hbformat.ini
* contrib/hbmisc/hbedit.prg
* contrib/hbmxml/tests/testmxml.prg
* contrib/hbnetio/utils/hbnetio/_console.prg
* contrib/hbnetio/utils/hbnetio/_winsvc.prg
* contrib/hbnetio/utils/hbnetio/hbnetio.prg
* contrib/hbnetio/utils/hbnetio/netiomgm.hb
* contrib/hbwin/tests/ole.prg
* contrib/hbwin/tests/oletst2.js
* contrib/hbwin/tests/oletst2.vbs
* contrib/hbxpp/doc/en/binnumx.txt
* contrib/hbxpp/doc/en/dbcmdx.txt
* contrib/xhb/htmutil.prg
* contrib/xhb/tfile.prg
* contrib/xhb/tframe.prg
* contrib/xhb/thtm.prg
* ChangeLog.txt
* debian/copyright
* doc/class_tp.txt
* doc/hdr_tpl.txt
* doc/xhb-diff.txt
* LICENSE.txt
* package/harbour-wce.spec.in
* package/harbour-win.spec.in
* package/harbour.spec
* package/mpkg_rpm_wce.sh
* package/mpkg_rpm_win.sh
* package/mpkg_rpm.sh
* package/mpkg_src.sh
* package/mpkg_ver.sh
* src/rtl/achoice.prg
* src/rtl/getsys53.prg
* src/rtl/tgetlist.prg
* src/rtl/tlabel.prg
* src/rtl/tmenusys.prg
* tests/hbdoc.prg
* tests/langmsg.prg
* tests/rto_get.prg
* tests/rto_tb.prg
+ doc/en/ati.txt
+ doc/en/dirdrive.txt
+ doc/en/hashfunc.txt
+ doc/en/hbtoken.txt
+ doc/en/left.txt
+ doc/en/proc.txt
+ doc/en/strtran.txt
+ doc/en/transfrm.txt
+ doc/en/typefile.txt
* doc/en/*
* more partial sync with 3.4 fork
55 lines
1.6 KiB
Plaintext
55 lines
1.6 KiB
Plaintext
/* $DOC$
|
|
$AUTHOR$
|
|
Copyright 2000 Luiz Rafael Culik <culik@sl.conex.net>
|
|
$TEMPLATE$
|
|
Function
|
|
$NAME$
|
|
StrTran()
|
|
$CATEGORY$
|
|
API
|
|
$SUBCATEGORY$
|
|
Strings
|
|
$ONELINER$
|
|
Translate substring value with a main string
|
|
$SYNTAX$
|
|
StrTran( <cString>, <cLocString>, [<cRepString>], [<nPos>],
|
|
[<nOccurrences>] ) --> cReturn
|
|
$ARGUMENTS$
|
|
<cString> The main string to search
|
|
|
|
<cLocString> The string to locate in the main string
|
|
|
|
<cRepString> The string to replace the <cLocString>
|
|
|
|
<nPos> The first occurrence to be replaced
|
|
|
|
<nOccurrences> Number of occurrence to replace
|
|
$RETURNS$
|
|
<cReturn> Formatted string
|
|
$DESCRIPTION$
|
|
This function searches for any occurrence of <cLocString> in <cString>
|
|
and replaces it with <cRepString>. If <cRepString> is not specified, a
|
|
NULL byte will replace <cLocString>.
|
|
|
|
If <nPos> is used, its value defines the first occurrence to be
|
|
replaced. The default value is 1. Additionally, if used, the value of
|
|
<nOccurrences> tell the function how many occurrences of <cLocString>
|
|
in <cString> are to the replaced. The default of <nOccurrences> is
|
|
all occurrences.
|
|
$EXAMPLES$
|
|
? StrTran( "Harbour Power", " ", " " ) // --> "Harbour Power"
|
|
? StrTran( "Harbour Power The Future of xBase", " ", " " , , 2 )
|
|
// --> "Harbour Power The future of xBase"
|
|
$STATUS$
|
|
R
|
|
$COMPLIANCE$
|
|
C
|
|
$PLATFORMS$
|
|
All
|
|
$FILES$
|
|
Libraty is rtl
|
|
$SEEALSO$
|
|
SubStr(), At()
|
|
$END$
|
|
*/
|