VaporWare
VaporWare AmIRC Main Index [Previous| Chapter Index|Next]

Arexx Commands

PARSELINE

Usage: PARSELINE LINE/F/A

Parses the line specified and returns the following stem variables;

     LINE        = The entire, unparsed, line recieved.

     LINE.PREFIX = The Nick and user@host

     LINE.COMMAND= The MSG Type

     LINE.DEST   = The channel the message was written to.

     LINE.REST   = The message text.
RELATED TOPICS: See RX_GETLINE- RX_GETLASTLINE

Examples:

     options results
     
     "getlastline"
     last=result
     "parseline" last
     
     text=line
     prefix=line.prefix
     comm=line.command
     dest=line.dest
     rest=line.rest
     
     "ECHO" text prefix comm dest rest