Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
a_f:f:af:last_index_of [2022/09/02 02:51] – removed - external edit (Unknown date) 127.0.0.1a_f:f:af:last_index_of [2023/05/09 00:59] (current) sean
Line 1: Line 1:
 +{{tag>Index Function Function_List Text}}
 +====== LAST_INDEX_OF ====== 
 +===== Description =====  
 +Returns an integer constant indicating the last index of the first string within the second string. For example, 
 +
 +''LAST_INDEX_OF(‘r, ‘bright red fox’)''
 +
 +returns 8. If the first string is not contained within the second one 0 is returned.
 +===== Parameters =====  
 +Two attributes of the Plain Text type or two string constants or calculations producing text
 +===== Example =====  
 +<code aim>IF LAST_INDEX_OF ('Smith', Account.Name) = 0 THEN ... </code>
 +
 +