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