substring-before()

substring-before()

The substring-before function returns a string that is the rest of a given string before a given substring.

Syntax

substring-before( haystack , needle )

Arguments

haystack
The string to be evaluated. Part of this string will be returned.
needle
The substring to search for. Everything before the first occurance of needle in haystack will be returned.

Returns

A string.

Examples

XPath Example Output
substring-before('aa-bb','-') aa
substring-before('aa-bb','a') (empty string)
substring-before('aa-bb','b') aa-
substring-before('aa-bb','q') (empty string)

Defined

XPath 1.0 4.2

Gecko support

Supported.

© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/XPath/Functions/substring-before

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部