PHP's substr in TypeScript

Rosetta Stone: perl/substr · lua/sub · awk/substr

How to use

Install via yarn add locutus and import: import { substr } from 'locutus/php/strings/substr'.

Or with CommonJS: const { substr } = require('locutus/php/strings/substr')

Use a bundler that supports tree-shaking so you only ship the functions you actually use. Vite, webpack, Rollup, and Parcel all handle this. For server-side use this is less of a concern.

Examples

These examples are extracted from test cases that automatically verify our functions against their native counterparts.

#codeexpected result
1substr('abcdef', 0, -1)'abcde'
2substr(2, 0, -6)false
3ini_set('unicode.semantics', 'on') substr('a\uD801\uDC00', 0, -1)'a'
4ini_set('unicode.semantics', 'on') substr('a\uD801\uDC00', 0, 2)'a\uD801\uDC00'
5ini_set('unicode.semantics', 'on') substr('a\uD801\uDC00', -1, 1)'\uD801\uDC00'
6ini_set('unicode.semantics', 'on') substr('a\uD801\uDC00z\uD801\uDC00', -3, 2)'\uD801\uDC00z'
7ini_set('unicode.semantics', 'on') substr('a\uD801\uDC00z\uD801\uDC00', -3, -1)'\uD801\uDC00z'

Notes

  • Handles rare Unicode characters if ‘unicode.semantics’ ini (PHP6) is set to ‘on’

Dependencies

This function uses the following Locutus functions:

Here's what our current TypeScript equivalent to PHP's substr looks like.

import { _phpCastString as _php_cast_string } from '../_helpers/_phpCastString.ts'
import { ini_get } from '../info/ini_get.ts'

export function substr(input: string | number, start: number, len?: number): string | false {
// discuss at: https://locutus.io/php/substr/
// original by: Martijn Wieringa
// bugfixed by: T.Wild
// improved by: Onno Marsman (https://twitter.com/onnomarsman)
// improved by: Brett Zamir (https://brett-zamir.me)
// revised by: Theriault (https://github.com/Theriault)
// revised by: Rafał Kukawski
// note 1: Handles rare Unicode characters if 'unicode.semantics' ini (PHP6) is set to 'on'
// example 1: substr('abcdef', 0, -1)
// returns 1: 'abcde'
// example 2: substr(2, 0, -6)
// returns 2: false
// example 3: ini_set('unicode.semantics', 'on')
// example 3: substr('a\uD801\uDC00', 0, -1)
// returns 3: 'a'
// example 4: ini_set('unicode.semantics', 'on')
// example 4: substr('a\uD801\uDC00', 0, 2)
// returns 4: 'a\uD801\uDC00'
// example 5: ini_set('unicode.semantics', 'on')
// example 5: substr('a\uD801\uDC00', -1, 1)
// returns 5: '\uD801\uDC00'
// example 6: ini_set('unicode.semantics', 'on')
// example 6: substr('a\uD801\uDC00z\uD801\uDC00', -3, 2)
// returns 6: '\uD801\uDC00z'
// example 7: ini_set('unicode.semantics', 'on')
// example 7: substr('a\uD801\uDC00z\uD801\uDC00', -3, -1)
// returns 7: '\uD801\uDC00z'

const str = _php_cast_string(input)

const multibyte = ini_get('unicode.semantics') === 'on'

const chars = multibyte ? str.match(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\s\S]/g) || [] : null

const inputLength = chars ? chars.length : str.length
let end = inputLength

if (start < 0) {
start += end
}

if (typeof len !== 'undefined') {
if (len < 0) {
end = len + end
} else {
end = len + start
}
}

if (start > inputLength || start < 0 || start > end) {
return false
}

if (chars) {
return chars.slice(start, end).join('')
}

return str.slice(start, end)
}

Improve this function

Locutus is a community effort following The McDonald's Theory: we ship first iterations, hoping others will improve them. If you see something that could be better, we'd love your contribution.

View on GitHub · Edit on GitHub · View Raw


« More PHP strings functions


Star