Merge github.com:eclipse/titan.core
[deliverable/titan.core.git] / help / info / lengthof.html
1 <!--
2 Copyright (c) 2000-2016 Ericsson Telecom AB
3 All rights reserved. This program and the accompanying materials
4 are made available under the terms of the Eclipse Public License v1.0
5 which accompanies this distribution, and is available at
6 http://www.eclipse.org/legal/epl-v10.html
7
8 Contributors:
9 Baji, Laszlo
10 Balasko, Jeno
11 Csorba, Mate
12 Forstner, Matyas
13 Szabados, Kristof
14 -->
15 <html>
16 <head>
17 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
18 <meta http-equiv="Content-Language" content="en-us">
19 <title>lengthof</title>
20 </head>
21 <body bgcolor="#DAD3C5" vlink="#0094D2" link="#003258">
22 <table align="left" border="0" cellspacing="0" cellpadding="0" valign=top>
23 <tr>
24 <td width=105 height=40><a href="https://projects.eclipse.org/projects/tools.titan"><img src="../images/titan_transparent.gif" border=0 width=105 height=40 align="left" alt="Titan"></a></td>
25 </tr>
26 </table>
27 <table border="0" align="right" cellpadding="0" cellspacing="0">
28 <tr>
29 <td><a href="../titan_main.html" alt="contents"><img border="0" src="../images/ao.jpg" width="53" height="40"></a></td>
30 <td><a href="../titan_index.html" alt="index"><img border="0" src="../images/up.jpg" width="53" height="40"></a></td>
31 <td><a alt="previous" href="length.html"><img border="0" src="../images/left.jpg" width="53" height="40"></a></td>
32 <td><a alt="next" href="log.html"><img border="0" src="../images/right.jpg" width="53" height="40"></a></td>
33 </tr>
34 </table>
35 <p><br clear="all">
36 </p>
37 <hr>
38 <h1>lengthof</h1>
39 <hr align="left" width="75%">
40 <p>This function returns the length of a value that is of type <b><font face="Courier New">bitstring</font></b>, <b><font face="Courier New">hexstring</font></b>, <b><font face="Courier New">octetstring</font></b>,
41 or any character string.
42 <p>The length of an <b><font face="Courier New">universal charstring</font></b> shall be calculated by counting each combining character and hangul syllable character (including fillers) on its
43 own (see ISO/IEC 10646, clauses 23 and 24).
44 <hr align="left" width="50%">
45 <p>Related keyword:</p>
46 <ul>
47 <li><b><font face="Courier New" size="4" color="#003258"><a href="integer.html">integer</a></font></b></li>
48 <li><b><a href="bitstring.html"><font face="Courier New" size="4" color="#003258">bitstring</font></a></b></li>
49 <li><b><a href="hexstring.html"><font face="Courier New" size="4" color="#003258">hexstring</font></a></b></li>
50 <li><b><a href="octetstring.html"><font face="Courier New" size="4" color="#003258">octetstring</font></a></b></li>
51 <li><b><a href="universal.html"><font face="Courier New" size="4" color="#003258">universal</font></a></b></li>
52 <li><b><a href="charstring.html"><font face="Courier New" size="4" color="#003258">charstring</font></a></b></li>
53 </ul>
54 <hr align="left" width="50%">
55 <div align="center">
56 <center>
57 <table border="0" width="90%" bgcolor="#FFB599" cellpadding="4">
58 <tr>
59 <td width="100%">
60 <h3 align="center"><font face="Courier New" color="#003258" size="5"><b>lengthof</b></font><font face="Courier New" color="#003258" size="5"><b>(</b></font><i>any_string_type value</i><font
61 face="Courier New" color="#003258" size="5"><b>) return integer</b></font></h3>
62 </td>
63 </tr>
64 </table>
65 </center>
66 </div>
67 <ul>
68 </ul>
69 <hr align="left" width="25%">
70 <p>Example 1:</p>
71 <p><font face="Courier New"> const integer c_longeur := lengthof('01001011010'B); </font></p>
72 <p>The constant called c_longeur will have the value 11 corresponding to the number of bits in the string.
73 <p>Example 2:</p>
74 <p><font face="Courier New"> const integer c_skynda := lengthof('BBC0530A0'H); </font></p>
75 <p>The constant called c_skynda will have the value 9 corresponding to the number of octets in the string.
76 <p>Example 3:</p>
77 <p><font face="Courier New"> const integer c_laenge := lengthof('80FBBC0530A0'O); </font></p>
78 <p>The constant called c_laenge will have the value 6 corresponding to the number of octets in the string.
79 <p>Example 4:</p>
80 <p><font face="Courier New"> const integer c_longeco := lengthof("pentristino"); </font></p>
81 <p>The constant called c_longeco will have the value 11 corresponding to the number of characters in the string.
82 <p>Example 5:</p>
83 <p><font face="Courier New"> const integer c_longeur := lengthof(&quot;&#x0109;irka&#x016D;&#x0135;o&quot;); </font></p>
84 <p>The constant called c_longeur will have the value 8 corresponding to the number of characters in the string.
85 <hr align="left" width="25%">
86 </body>
87 </html>
This page took 0.031993 seconds and 5 git commands to generate.