Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
TextMerge()
Message
De
29/03/2019 08:27:34
 
 
À
29/03/2019 08:13:44
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Divers
Thread ID:
01667676
Message ID:
01667680
Vues:
42
Hi Rick,

Okay, and this is good, it works.
But I would also like to try with TextMerge () solution

Thanks

>Hi everyone !
>How can I do this in a different way, using TextMerge() ?
>This is example

This function may work:
PROCEDURE DoProcessing
LPARAMETERS tmTekst1
LOCAL lcString
    DO WHILE .t.
        lcString = STREXTRACT(tmTekst1, "<<#", "#>>")
        IF EMPTY(lcString)
            RETURN tmTekst1
        ENDIF
        tmTekst1 = STUFF(tmTekst1, AT("<<#", tmTekst1), 6 + LEN(lcString), fff(lcString, "_temp"))
    ENDDO
ENDPROC
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform