Section courante

A propos

Section administrative du site

RIGHT$

Droite
ST BASIC

Syntaxe

X$ = RIGHT$(targetstring, numberofcharacters)

Paramètres

Nom Description
targetstring Ce paramètre permet d'indiquer la chaîne de caractères utilisé comme base du traitement
numberofcharacters Ce paramètre permet d'indiquer le nombre de caractères à garder

Description

Cette fonction retourne les caractères à la fin d'une chaîne de caractères.

Remarque

Exemples

Voici des exemples typiques de l'utilisation de la fonction RIGHT$ :

  1. X$=RIGHT$(A$,5)

Voici un autre exemple :

  1. 10 A$="Strategies marketing"
  2. 20 B$="Reponse regionale"
  3. 30 C$="Resultats de test"
  4. 40 INPUT "NUMERO DE CATALOGUE";CATALOG$
  5. 50 IF RIGHT$(CATALOG$,1)="1" THEN PRINT "VOUS AVEZ CHOISI"
  6. 60 PRINT "CATALOGUE TESTPRO SERIE 1"
  7. 70 PRINT "VEUILLEZ CHOISIR PARMI LES RUBRIQUES SUIVANTES :"
  8. 80 PRINT A$
  9. 90 PRINT B$
  10. 100 PRINT C$
  11. RUN

on obtiendra le résultat suivant :

NUMERO DE CATALOGUE? CATALOGUE GLADIR.COM 2020
VOUS AVEZ CHOISI
CATALOGUE TESTPRO SERIE 1.
VEUILLEZ CHOISIR PARMI LES RUBRIQUES SUIVANTES :
Strategies marketing
Reponse regionale
Resultats de test
Ok

Voici encore un autre exemple :

  1. 10 A$="ST BASIC"
  2. 20 B$=RIGHT$(A$,5)
  3. 30 PRINT B$
  4. RUN

on obtiendra le résultat suivant :

BASIC
Ok


Dernière mise à jour : Vendredi, le 7 Août 2020