blob: 50aefab936542ac0792321af13cace254a50140c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
---
title: string-length
slug: Web/XPath/Functions/string-length
tags:
- XSLT
- XSLT_Reference
translation_of: Web/XPath/Functions/string-length
---
<p>{{ XsltRef() }}</p>
<p><code>string-length</code> 関数は、与えられた文字列の文字数に等しい数値を返します。</p>
<h3 id="Syntax">構文</h3>
<pre class="eval">string-length( [<em>string</em>] )
</pre>
<h3 id="Arguments">引数</h3>
<dl>
<dt><em><code>string</code></em>(省略可)</dt>
<dd>評価する文字列。省略すると、コンテキストノードを文字列に変換したものが使用されます。</dd>
</dl>
<h3 id="Returns">返値</h3>
<p>文字列の文字数に等しい整数。</p>
<h3 id="Defined">定義</h3>
<p><a href="https://www.w3.org/TR/xpath#function-string-length">XPath 1.0 4.2</a></p>
<h3 id="Gecko_support">Gecko での対応</h3>
<p>対応済み。</p>
|