This version is out of date, covering development from v9.0.0 to v9.3.0. It is maintained here only for inbound reference links from elsewhere. It is no longer actively updated.

Jump to the current version of aTbRef

Tinderbox v9 Icon

Stream.try{action}[.thenTry{action}]


Operator Type: 

Operator Scope of Action: 

Operator Purpose: 

Operator First Added: 

Operator Altered: 

 Function   [other Function type actions]

 Item   [operators of similar scope]

 Stream parsing   [other Stream parsing operators]

 9.1.0

 


Stream.try{ action(s) }[.thenTry{ action(s) }]

If the first test action fails, they restore the string and allow you to process it a different way. The current success/failure state can be tested using the failed() operator.

Saves the value of an attribute (the steam source) and attempts an action. If the action fails because one of its operators fails or the fail() operator is performed, the original value of stream source is restored.

A .try{} may be followed by one or more .thenTry{} clauses. If the original .try{} succeeds, all subsequent .thenTry{} clauses are ignored. If the original .try{} fails, then each .thenTry{} is attempted in turn. Once a .thenTry{} clause succeeds, subsequent .thenTry{} clauses are ignored.

For example:

$MyString.try{
   $MyString=$MyString.skipToWord("To:").captureWord;
}

looks for strings such as "To:John Doe"

If the string "To:" is not found, $MyString will be unchanged. If found, $MyString is replaced by the word that follows, up to the next whitespace character or the end of the string, i.e. "John".



A Tinderbox Reference File : Actions & Rules : Operators : Full Operator List : Stream.try{action}[.thenTry{action}]