diff options
Diffstat (limited to 'files/ko/web/xpath/functions/substring/index.html')
-rw-r--r-- | files/ko/web/xpath/functions/substring/index.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/files/ko/web/xpath/functions/substring/index.html b/files/ko/web/xpath/functions/substring/index.html new file mode 100644 index 0000000000..74368b58bd --- /dev/null +++ b/files/ko/web/xpath/functions/substring/index.html @@ -0,0 +1,55 @@ +--- +title: substring +slug: Web/XPath/Functions/substring +tags: + - XSLT_Reference +translation_of: Web/XPath/Functions/substring +--- +<p>{{ XsltRef() }}</p> +<p><br> + <code>substring</code> 함수는 인수로 준 문자열의 부분을 반환합니다.</p> +<h3 id=".EA.B5.AC.EB.AC.B8" name=".EA.B5.AC.EB.AC.B8">구문</h3> +<pre class="eval">substring(<i>string</i> ,<i>start</i> [,<i>length</i>] ) +</pre> +<h3 id=".EC.9D.B8.EC.88.98" name=".EC.9D.B8.EC.88.98">인수</h3> +<dl> + <dt> + <i> + <code>string</code></i> + </dt> + <dd> + 평가할 문자열.</dd> +</dl> +<dl> + <dt> + <i> + <code>start</code></i> + </dt> + <dd> + 부분 문자열이 시작하는 + <i> + <code>string</code></i> + 안 위치.</dd> +</dl> +<dl> + <dt> + <i> + <code>length</code></i> + (선택사항)</dt> + <dd> + 부분 문자열의 길이. 빼면, 반환되는 문자열은 + <i> + <code>start</code></i> + 위치부터 + <i> + <code>string</code></i> + 의 끝까지 모든 문자를 포함합니다.</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> +<p>다른 XPath 함수와 마찬가지로, 위치는 0에 기반을 두지 않습니다. 문자열의 첫 문자는 위치가 0이 아니라 1입니다.</p> +<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-substring">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> |