From WikiChip
Difference between revisions of "mirc/identifiers/$parseline"
(Created page with "{{mirc title|$parseline Identifier}}'''$parseline''' return the line involved in the {{mIRC|on parseline}} event. == Synopsis == <pre>$parseline</pre> == Paramters == None...") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{mirc title|$parseline Identifier}}'''$parseline''' return the line involved in the {{mIRC|on parseline}} event. | {{mirc title|$parseline Identifier}}'''$parseline''' return the line involved in the {{mIRC|on parseline}} event. | ||
+ | |||
+ | |||
== Synopsis == | == Synopsis == | ||
<pre>$parseline</pre> | <pre>$parseline</pre> | ||
− | == | + | '''Note:''' For ''out'' lines, $parseline is terminated with a $LF character that is not visible when viewed in mIRC. You may wish to remove this with: |
+ | <source lang="mIRC">var %pl $parseline | ||
+ | if ($asc($right(%pl,1)) == 10) %pl = $right(%pl,-1)</source> | ||
+ | == Parameters == | ||
None | None | ||
== Properties == | == Properties == | ||
− | |||
None | None | ||
Line 18: | Line 22: | ||
== See Also == | == See Also == | ||
− | {{mIRC|/parseline}} | + | * {{mIRC|/parseline}} |
− | {{mIRC|on parseline}} | + | * {{mIRC|on parseline}} |
− | {{mIRC|$parsetype}} | + | * {{mIRC|$parsetype}} |
− | [[Category: | + | {{mIRC identifier list}} |
+ | [[Category:mIRC identifiers|parseline]] |
Latest revision as of 10:51, 4 October 2018
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
$parseline return the line involved in the on parseline event.
Synopsis[edit]
$parseline
Note: For out lines, $parseline is terminated with a $LF character that is not visible when viewed in mIRC. You may wish to remove this with:
var %pl $parseline if ($asc($right(%pl,1)) == 10) %pl = $right(%pl,-1)
Parameters[edit]
None
Properties[edit]
None
Example[edit]
on *:parseline:*:*:echo -a $parseline
Compatibility[edit]
Added: mIRC v7.42
Added on: 17 Jul 2015
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.
See Also[edit]
mIRC identifier list