danfo.Series.str.endsWith(str) [source]
Parameters | Type | Description | Default |
str | string | the character(s) to check | "" |
Returns: Series (Boolean element)
Example
const dfd = require("danfojs-node")let data = ['lower', 'CAPITALS', 'this is a sentence', 'SwApCaSe']let sf = new dfd.Series(data)sf.str.endsWith("e").print()
╔═══╤══════════════════════╗║ │ 0 ║╟───┼──────────────────────╢║ 0 │ false ║╟───┼──────────────────────╢║ 1 │ false ║╟───┼──────────────────────╢║ 2 │ true ║╟───┼──────────────────────╢║ 3 │ true ║╚═══╧══════════════════════╝