Series.str.replace

Replace a word or character(s) in a String element

danfo.Series.str.replace(searchValue, replaceValue, options) [source]

ParametersTypeDescriptionDefault

searchValue

string

String | Character value to replace. Supports regex.

""

replaceValue

String

string to replace the searched string

""

options

Object

inplace: Whether to perform the operation in-place or not.

{

inplace: false

}

Returns: Series

const dfd = require("danfojs-node")

let data = ['lower', 'CAPITALS', 'this is a sentence', 'SwApCaSe']
let sf = new dfd.Series(data)
sf.str.replace("A", "XXX").print()
╔═══╤══════════════════════╗
║   │ 0                    ║
╟───┼──────────────────────╢
║ 0 │ lower                ║
╟───┼──────────────────────╢
║ 1 │ CXXXPITALS           ║
╟───┼──────────────────────╢
║ 2 │ this is a sentence   ║
╟───┼──────────────────────╢
║ 3 │ SwXXXpCaSe           ║
╚═══╧══════════════════════╝

Last updated