Answers for "string replace regex"

9

how to use the replace method in javascript

let string = 'soandso, my name is soandso';

let replaced = string.replace(/soandso/gi, 'Dylan');

console.log(replaced); //Dylan, my name is Dylan
Posted by: Guest on April-15-2020
3

javascript regex replace

const search = 'duck'
const replaceWith = 'goose';

const result = 'duck duck go'.replaceAll(search, replaceWith);

result; // => 'goose goose go'
Posted by: Guest on June-23-2020
1

javascript replace

var frase = "Son tres mil trescientos treinta y tres con nueve";
frase = frase.replace("tres","dos");
console.log(frase);
//Son dos mil trescientos treinta y tres con nueve
Posted by: Guest on November-16-2020
8

regex replace /

// replaces all / in a String with _
str = str.replace(/\//g,'_');
Posted by: Guest on May-29-2020
0

Replace string using regex

import re
line = re.sub(r"</?\[\d+>", "", line)
Posted by: Guest on September-06-2021
0

Replace string using regex

line = re.sub(r"""
  (?x) # Use free-spacing mode.
  <    # Match a literal '<'
  /?   # Optionally match a '/'
  \[   # Match a literal '['
  \d+  # Match one or more digits
  >    # Match a literal '>'
  """, "", line)
Posted by: Guest on September-06-2021

Code answers related to "string replace regex"

Code answers related to "Javascript"

Browse Popular Code Answers by Language