<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    On 08/20/2013 10:40 AM, Gareth Blades wrote:<br>
    <blockquote cite="mid:52132B67.8040603@dns99.co.uk" type="cite">
      <meta content="text/html; charset=ISO-8859-1"
        http-equiv="Content-Type">
      On 20/08/13 09:29, Jonas Kellens wrote:
      <blockquote cite="mid:521328D4.7080603@telenet.be" type="cite">
        <meta http-equiv="content-type" content="text/html;
          charset=ISO-8859-1">
        <font face="Helvetica, Arial, sans-serif">Hello,<br>
          <br>
          how can I cut off the last character of the EXTEN-variable
          with variating length ?<br>
          <br>
          So I have :<br>
          <br>
          112233#<br>
          123#<br>
          123456789#<br>
          <br>
          I want to cut off the last character.<br>
          <br>
          ${EXTEN:-1} gives me #, but that is the character I want to
          cut off.<br>
        </font></blockquote>
      <br>
      Set(variable=${EXTEN:0:$[LEN(${EXTEN})-1]})<br>
    </blockquote>
    <br>
    Hello,<br>
    <br>
    this works !<br>
    <br>
    Thanks.<br>
    <br>
    Jonas.<br>
  </body>
</html>