From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- .../web/xpath/functions/substring-after/index.html | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 files/ko/web/xpath/functions/substring-after/index.html (limited to 'files/ko/web/xpath/functions/substring-after') diff --git a/files/ko/web/xpath/functions/substring-after/index.html b/files/ko/web/xpath/functions/substring-after/index.html new file mode 100644 index 0000000000..513a777014 --- /dev/null +++ b/files/ko/web/xpath/functions/substring-after/index.html @@ -0,0 +1,49 @@ +--- +title: substring-after +slug: Web/XPath/Functions/substring-after +tags: + - XSLT_Reference +translation_of: Web/XPath/Functions/substring-after +--- +

{{ XsltRef() }}

+


+ substring-after 함수는 첫 번째 인수에서 두 번째 인수가 나타난 다음의 나머지를 반환합니다.

+

구문

+
substring-after(haystack ,needle )
+
+

인수

+
+
+ + haystack +
+
+ 평가할 문자열. 이 문자열의 부분이 반환됩니다.
+
+
+
+ + needle +
+
+ 찾을 부분 문자열. + + haystack + 에서 + + needle + 의 첫 출현 뒤의 문자열이 반환됩니다.
+
+

반환

+

문자열.

+

주의

+

XSL 예:

+
<xsl:value-of select="substring-after('1999/04/01','/')" />
+
+

출력

+
04/01
+
+

정의

+

XPath 1.0 4.2

+

Gecko 지원

+

지원함.

-- cgit v1.2.3-54-g00ecf