admin wrote:
Hello,
Could you specify in what context you used it before?
Regards,
ARI Soft
I used it to produce links for email and web addresses embedded with other text pulled from a .csv file thus avoiding the need to have them in a separate field. Here's the code from a v 1.x table where I'm using it. 
| Code: | 
| 
 {arijdatatable bPaginate="true" sPaginationType="full_numbers" iDisplayLength="25" bAutoWidth="false"}{aricsvtable file="/data/xml/allAreaClubs.csv" sortBy="dayWeek" sortDir="asc"}
 {aricsvtablecolumns}
 {aricsvtablecolumn id="dayWeek" alias="Day" pos="1" width="5%"}
 {coltemplate}
 <script>var day = '{$dayWeek}'.substr(2,3); document.write(day);</script>
 {/coltemplate}
 {/aricsvtablecolumn}
 {aricsvtablecolumn id="clubIcon" alias="Icon" pos="2" width="10%"}
 {coltemplate}<IMG SRC="/images/icons/{$clubIcon}" ALT="{$clubIcon}" width="80" >{/coltemplate}
 {/aricsvtablecolumn}
 {aricsvtablecolumn id="clubName" alias="Name/Description" pos="3" width="30%"}
 {coltemplate}<strong>{$clubName}</strong> - {$danceLevel}  - {$clubDesc}
 - <a href="http://coloradosquaredance.com/index.php/events-calendar/eventsbyyear/?search_fv={$clubName}" target="_top">View Club Events Calendar</a>
 - {arilinkifier target="_blank"}Web Link: {$webLink} {/arilinkifier}
 
 {/coltemplate}
 {/aricsvtablecolumn}
 
 {aricsvtablecolumn id="clubContactInfo" alias="Contact Info" pos="4"}
 {coltemplate}{arilinkifier target="_blank"}{$clubContactInfo} - {$clubContactEmail}{/arilinkifier}{/coltemplate}
 {/aricsvtablecolumn}
 
 
 {aricsvtablecolumn id="venueName" alias="Venue" pos="5"}
 {coltemplate}{$venueName}, {$venueAddress1}, {$venueCity}, {$venueState} {$venueZipcode}
 {/coltemplate}
 {/aricsvtablecolumn}
 
 {aricsvtablecolumn id="cssdaMember" alias="CSSDA" pos="6" width="10%"}
 {coltemplate}{$Area} / {$cssdaMember}{/coltemplate}
 {/aricsvtablecolumn}
 
 {/aricsvtablecolumns}
 {/aricsvtable}
 {/arijdatatable}
 
 
 
 |