Sample coding: <br><br> <cfquery name="approve"<br> datasource="spg_DB"<br> dbtype="ODBC"><br> <br> select * from notice_table<br> where approval='Y'<br> </cfquery><br> <br> <cfoutput><a href="notice.cfmcode=#approve.notice_code#"> #approve.notice_details# more...</a></cfoutput><br><br>my objective is to retrieve data(varchar(255)) from the database & display first few sentences ONLY. Upon clicking the link, displays another page with the whole details... But the aboved coding will display everything instead. How can I output the data to display only first 2 sentences? I can't use those trim string functions rite?<br>