<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html><body style='font-family: Verdana,Geneva,sans-serif'>
<p>On 2013-11-19 18:16, Harry Penner wrote:</p>
<blockquote type="cite" style="padding-left:5px; border-left:#1010ff 2px solid; margin-left:5px"><!-- html ignored --><!-- head ignored --><!-- meta ignored -->
<div dir="ltr">Try printf.  This example would give you just the first 3 characters of field 6 as your example intended:
<div> </div>
<div>awk -F ';' '{ printf( "%.3s", $6) }'</div>
</div>
</blockquote>
<p>If you want to print out the whole row with field #6 modified, try this</p>
<p>awk -F';' 'BEGIN { OFS=";"}<br />                {$6=substr($6, 0, 3); print $0;}'</p>
<div>
<pre>-- <br />Kathryn Hogg
http://womensfooty.com</pre>
</div>
</body></html>