Series.str.indexOf
the position of the first found occurrence of a specified value in a string
Parameters
Type
Description
Default
const dfd = require("danfojs-node")
let data = ['lower', 'CAPITALS', 'this is a sentence', 'SwApCaSe']
let sf = new dfd.Series(data)
sf.str.indexOf("C").print()╔═══╤══════════════════════╗
║ │ 0 ║
╟───┼──────────────────────╢
║ 0 │ -1 ║
╟───┼──────────────────────╢
║ 1 │ 0 ║
╟───┼──────────────────────╢
║ 2 │ -1 ║
╟───┼──────────────────────╢
║ 3 │ 4 ║
╚═══╧══════════════════════╝Last updated