Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
FileTools[Text][WriteInteger] - write an integer to a file
Calling Sequence
WriteInteger(file, integer, opt1, opt2, ...)
Parameters
file
-
file descriptor or filename
integer
integer to write to the file
opt1, opt2, ...
(optional) argument of the form, name or name=string where name is one of delim, leftdelim, or rightdelim
Description
The WriteInteger(file, integer) command writes integer to the file specified by file.
The WriteInteger function can place delimiters around integer while writing. Without delimiters the characters of two consecutive calls to WriteInteger are continuous in the file and it is impossible to determine the correct location to separate the two integers. Delimiters can be added around the integer by specifying, delim, leftdelim, or rightdelim.
The delim option adds delimiters on both sides of the integer. The delimiter can be specified by passing . If a string is not specified, then the delimiter is a single space.
The leftdelim option adds a delimiter before the integer. The rightdelim option adds a delimiter after the integer. The delimiter can be specified by passing or . If a string is not specified then the delimiter is a single space. The leftdelim and rightdelim options can be used together to specify asymmetric delimiters. If used in conjunction with delim, the delimiters specified by leftdelim or rightdelim take precedence.
If file is the name of an open file, the file descriptor is obtained automatically. If file is the name of a file that is not open, it is opened automatically. If file is an invalid descriptor, an error is raised.
Examples
See Also
file, FileTools[AtEndOfFile], FileTools[Remove], FileTools[Text], FileTools[Text][Close], FileTools[Text][Open], FileTools[Text][ReadCharacter], FileTools[Text][ReadInteger], FileTools[Text][ReadNextInteger], FileTools[Text][ReadString], IO_errors
Download Help Document