Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

substring-before


substring-before 関数は、与えられた文字列内で、与えられた部分文字列よりも前にある残りの文字列を返します。

構文

substring-before( haystack , needle )

引数

haystack
評価される文字列。この文字列の一部が返される。
needle
検索する文字列。 haystack 内で最初に見つかった needle よりも前にあるすべての文字が返される。

戻り値

文字列。

XPath の例 出力
substring-before('aa-bb','-') aa
substring-before('aa-bb','a') (空文字列)
substring-before('aa-bb','b') aa-
substring-before('aa-bb','q') (空文字列)

定義

XPath 1.0 4.2

Gecko でのサポート

サポート済み。

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: Shoot
 最終更新者: Shoot,