diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
commit | da78a9e329e272dedb2400b79a3bdeebff387d47 (patch) | |
tree | e6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/ko/web/xpath/functions/string/index.html | |
parent | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff) | |
download | translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2 translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip |
initial commit
Diffstat (limited to 'files/ko/web/xpath/functions/string/index.html')
-rw-r--r-- | files/ko/web/xpath/functions/string/index.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/files/ko/web/xpath/functions/string/index.html b/files/ko/web/xpath/functions/string/index.html new file mode 100644 index 0000000000..25c9879bdd --- /dev/null +++ b/files/ko/web/xpath/functions/string/index.html @@ -0,0 +1,42 @@ +--- +title: string +slug: Web/XPath/Functions/string +tags: + - XSLT_Reference +translation_of: Web/XPath/Functions/string +--- +<p>{{ XsltRef() }}</p> +<p><br> + <code>string</code> 함수는 인수를 문자열로 변환합니다.</p> +<h3 id=".EA.B5.AC.EB.AC.B8" name=".EA.B5.AC.EB.AC.B8">구문</h3> +<pre class="eval">string( [<i>object</i>] ) +</pre> +<h3 id=".EC.9D.B8.EC.88.98" name=".EC.9D.B8.EC.88.98">인수</h3> +<dl> + <dt> + <i> + <code>object</code></i> + (선택사항)</dt> + <dd> + 문자열로 변환할 개체. 빼면, 문맥 노드를 씁니다.</dd> +</dl> +<h3 id=".EB.B0.98.ED.99.98" name=".EB.B0.98.ED.99.98">반환</h3> +<p>문자열</p> +<h3 id=".EC.A3.BC.EC.9D.98" name=".EC.A3.BC.EC.9D.98">주의</h3> +<ul> + <li>만약 개체가 노드 집합이면, 집합의 첫 노드의 문자열값을 반환됩니다.</li> + <li>숫자는 다음으로 반환됩니다. + <ul> + <li>NaN은 문자열 NaN으로 변환됩니다.</li> + <li>양수 0은 문자열 0으로 변환됩니다.</li> + <li>음수 0은 문자열 0으로 변환됩니다.</li> + <li>양의 무한대(infinity)는 문자열 Infinity로 변환됩니다.</li> + <li>음의 무한대는 문자열 -Infinity로 변환됩니다.</li> + <li>-1과 1 사이의 10진수는 소수점 앞에 0이 하나 있는 문자열로 변환됩니다.</li> + </ul> + </li> +</ul> +<h3 id=".EC.A0.95.EC.9D.98" name=".EC.A0.95.EC.9D.98">정의</h3> +<p><a class="external" href="http://www.w3.org/TR/xpath#function-string">XPath 1.0 4.2</a></p> +<h3 id="Gecko_.EC.A7.80.EC.9B.90" name="Gecko_.EC.A7.80.EC.9B.90">Gecko 지원</h3> +<p>지원함.</p> |