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