strImport

C Styled Script
Reference Manual

<< Back  End  Next >>
 
 
INDEX
Introduction
Installation
Using The CSS Executive
Language
Directives
System Library
String Library
   strAscii
   strBuildRecord
   strCenter
   strChange
   strChar
   strExport
   strFormatNumber
   strImport
   strIndexOf
   strIsInteger
   strIsNumber
   strLeftJustify
   strLength
   strLower
   strParseRecord
   strRemoveWords
   strRightJustify
   strSplitConnectString
   strSplitPath
   strSpread
   strStrip
   strStripExtension
   strStripLeading
   strStripTrailing
   strSubString
   strUpper
   strWordCount
   strWords
Regular Expression Lib.
File Library
Database Library
C API
C++ API
CSS Links
  
strImport(
  const string)  // string to import

Converts all escaped characters to special characters.

Example:

var x = 'another\\tbrick in the\\twall';
sysLog(x);
sysLog(strImport(x));

Output:

another\tbrick in the\twall
another   brick in the   wall
 Copyright © IBK LandquartLast revised by Peter Koch, 24.02.00<< Back  Top  Next >>