Links
Comment on page

Series.str.replace

Replace a word or character(s) in a String element
danfo.Series.str.replace(searchValue, replaceValue, options) [source]
Parameters
Type
Description
Default
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
Node
Browse
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()
Output
╔═══╤══════════════════════╗
║ │ 0 ║
╟───┼──────────────────────╢
║ 0 │ lower ║
╟───┼──────────────────────╢
║ 1 │ CXXXPITALS ║
╟───┼──────────────────────╢
║ 2 │ this is a sentence ║
╟───┼──────────────────────╢
║ 3 │ SwXXXpCaSe ║
╚═══╧══════════════════════╝