Functions and Properties
CsvToWebRec has simple Functions and Properties, which supports you send CSV file to the Web server and examine return values from Web server.
You can nest function and properties into functions arguments.
You cannot mix functions and properties into general character string.
The top level of function and properties must be 1.

Implemented functions are followings.
Function NameFunctionUse timings
%FORMAT()%Formats character string. Very similer to C lamguage printf() function.Prologue, CSV upload, Epilogue
%RECINDEX_BASE()%Retrieves current processing record index, and add offset set to the argument. If you want add the offset for %RECINDEX% property, this function helps the reqirement.CSV upload
%PROLOGUE_RETURN()%Retrieves returned string of prologue procedure. CSV upload, Epilogue
%ENCRYPT()%Encrypts character string. Currently supports CBC mode of DES.Prologue, CSV upload, Epilogue
%DECRYPT()%Decrypts character string. Currently supports CBC mode of DES.Prologue, CSV upload, Epilogue
%BASE64_ENCODE()%Encode character string into Base64.Prologue, CSV upload, Epilogue
%BASE64_DECODE()%Decode character string from Base64.Prologue, CSV upload, Epilogue
%RANDOM_STRING()%Generates random character string.Prologue, CSV upload, Epilogue
%RANDOM_STRING_INDEX()%Retrieves character string generated by %RANDOM_STRING()% function.Prologue, CSV upload, Epilogue
Implemented properties are followings.
Property NameFunctionUse timings
%RECINDEX%Index of current processing record. Record index depends on each upload units.CSV upload
%RECCOUNT%The record count of each upload units.CSV upload
%TOTALRECCOUNT%Total CSV record count.Epilogue
%EMPTYSTRING%The empty character string.Prologue, CSV upload, Epilogue
%IGNORE%This property means ignore. If you do not want to examine Web server's return value or do not want to send a CSV column, use this property.Prologue, CSV upload, Epilogue
%SPACE%A space chaacter.Prologue, CSV upload, Epilogue
%COMMA%A comma character.Prologue, CSV upload, Epilogue
%CRLF%[CRLF] style EOL.Prologue, CSV upload, Epilogue
%LF%[LF] style EOL.Prologue, CSV upload, Epilogue
%CR%[CR] style EOL.Prologue, CSV upload, Epilogue
%STARTDATE%UTC date of upload operation started.Prologue, CSV upload, Epilogue
%STARTTIME%UTC time of upload operation started.Prologue, CSV upload, Epilogue
%CURRENTDATE%UTC date of current.Prologue, CSV upload, Epilogue
%CURRENTTIME%UTC time of current.Prologue, CSV upload, Epilogue
%COLUMN%A value of CSV column. Use this property, if you want modify the value of column with functions.CSV upload