| |
|
|
Michael Dell | gRChar$(s,n): s = input String n = position the characters (of right)
Result: the Nte characters of right.
gLChar$(s,n): s = input String n = characters number (of left)
Result: the Nte characters of left.
rMid$(s,n1,n2): s = input String n1 = Startposition (of right) n2 = Number of characters
Result: Teilstring (of right to left)
are n1 and/or n2 = -1 becomes the whole String inverse zurückgegeben.
functions (gRLCHar.pinc): CompileMarkSeparationdemonstration: CompileMarkSeparation $I gRLCHar.pinc
Var Test$ = "ABCDEFGH"
Cls
Print "gRChar$(Test$,2) = "; gRChar$(Test$,2)
Print
Print "gLChar$(Test$,2) = "; gLChar$(Test$,2)
Print
Print "rMid$(Test$,2,2) = "; rMid$(Test$,2,2)
Print
Print "rMid$(Test$,1,9) = "; rMid$(Test$,1,9)
Print
Print "rMid$(Test$,-1,0) = "; rMid$(Test$,-1,0)
WaitInput
End
|
|
|
| Salu Michael...
Hab zwar krumme Fieß awer dofir e' ecklich Gsicht! | 07/22/08 ▲ |
|
|
|
|
Jac de Lad | |
|
| Profan² 2.6 bis XProfan 11.1+XPSE+XPIA+XPRR (und irgendwann XIDE) Core2Duo E8500/T2250, 8192/1024 MB, Radeon HD4850/Radeon XPress 1250, Vista64/XP | 07/22/08 ▲ |
|
|
|
|
Michael Dell | Yes, have right I Have there of gRChar$() directly on gLChar$() umgesetzt without drüber to think. Habs through Mid$(s,n,1) supplant. Thanks you! |
|
|
| Salu Michael...
Hab zwar krumme Fieß awer dofir e' ecklich Gsicht! | 07/23/08 ▲ |
|
|
|
|
RGH | ... and ex XProfan 11 can gRChar$(s,n) and gLChar$(s,n) through SubStr$(s,n) and SubStr$(s,-n) supplant or. define: If with SubStr$ no Separator indicated becomes, becomes each single characters as Teilstring viewing.
Greeting Roland |
|
|
| Intel Duo E8400 3,0 GHz / 4 GB RAM / 1000 GB HDD - ATI Radeon HD 4770 512 MB - Windows 7 Home Premium 32Bit - XProfan X4 | 07/23/08 ▲ |
|
|
|
|
Michael Dell | |
|
| Salu Michael...
Hab zwar krumme Fieß awer dofir e' ecklich Gsicht! | 07/23/08 ▲ |
|
|
|