Flip$
FlippedString$ = Flip$(StringToFlip$)
 
Parameters:

    StringToFlip$ = The string you wish to flip
Returns:

    FlippedString$ = The string flipped backwards
 

      The Flip$ function will return the input string with the characters in reversed order.



FACTS:


      * none



Mini Tutorial:


  
  
; Display the string "Play Basic" backwards (flipped)
  Print Flip$("Play Basic")
  
; Display the Screen and wait for the user to press a key
  Sync
  WaitKey
  



This example would output.

  
  cisaB yalP
  

 
Related Info: :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com