Difference between revisions of "FILETOSTR()"

From Lianjapedia
Jump to: navigation, search
(Description)
 
(5 intermediate revisions by the same user not shown)
Line 6: Line 6:
  
 
==See Also==
 
==See Also==
[[AT()]], [[ATNEXT()]], [[FCLOSE()]], [[FCREATE()]], [[FERROR()]], [[FGETS()]], [[FOPEN()]], [[FPUTS()]], [[FREAD()]], [[FREADSTR()]], [[FWRITE()]], [[MEMOREAD()]], [[MEMOWRITE()]], [[SET STRESCAPE]], [[STUFF()]], [[STR()]], [[STREXTRACT()]], [[STRTOFILE()]], [[STRTRAN()]], [[STRZERO()]], [[SUBSTR()]], [[TRIM()]]
+
[[AT()]], [[ATNEXT()]], [[BINFILETOSTR()]], [[BINSTRTOFILE()]], [[FCLOSE()]], [[FCREATE()]], [[FERROR()]], [[FGETS()]], [[FOPEN()]], [[FPUTS()]], [[FREAD()]], [[FREADSTR()]], [[FWRITE()]], [[MEMOREAD()]], [[MEMOWRITE()]], [[SET STRESCAPE]], [[STUFF()]], [[STR()]], [[STREXTRACT()]], [[STRTOFILE()]], [[STRTRAN()]], [[STRZERO()]], [[SUBSTR()]], [[TRIM()]]
  
 
==Description==
 
==Description==
Line 17: Line 17:
 
|-
 
|-
 
|}
 
|}
 +
 +
From v7.0, the filetostr() function is also supported in Python scripting.
  
 
==Example==
 
==Example==
Line 26: Line 28:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:String Data Functions]]
 
[[Category:String Data Functions]]
[Category:ASCII File Access Functions]]
+
[[Category:ASCII File Access Functions]]
 +
[[Category:Lianja v7.0]]
 +
[[Category:Python Scripting]]

Latest revision as of 05:23, 24 January 2022

Purpose

Function to read a file into a text string

Syntax

FILETOSTR(<expC>)

See Also

AT(), ATNEXT(), BINFILETOSTR(), BINSTRTOFILE(), FCLOSE(), FCREATE(), FERROR(), FGETS(), FOPEN(), FPUTS(), FREAD(), FREADSTR(), FWRITE(), MEMOREAD(), MEMOWRITE(), SET STRESCAPE, STUFF(), STR(), STREXTRACT(), STRTOFILE(), STRTRAN(), STRZERO(), SUBSTR(), TRIM()

Description

The FILETOSTR() function reads the specified file and returns its contents as text.

Parameter Description
<expC> Name of the file to be read. This should include the path if not in the current directory.

From v7.0, the filetostr() function is also supported in Python scripting.

Example

myString = filetostr("myfile.txt")