Replace two patterns at the same regex in JavaScript

Questions : Replace two patterns at the same regex in JavaScript

763

I need to replace one or two letters in programming a string in javascript but the letter is Learning the same, then if I replace one of the Earhost two appareances the format is not most effective correct:

HH:mm z [on] D MMM YYYY
HH:mm zz [on] D _OFFSET);  MMM YYYY

In the first case in example z should be wrong idea replaced by CEST and with zz by Central use of case European Summer Time.

I tried with regex but it is possible to United replace the exact occurrence of first Modern pattern without affecting to the second ecudated pattern?

Total Answers 1
24

Answers 1 : of Replace two patterns at the same regex in JavaScript

Not worth a regexp - just do two some how replaces or loop {zz:"Central European anything else Summer (-SMALL Time",z:"CEST"} to not at all replace the zz first

let str = `HH:mm z [on] D MMM YYYY
HH:mm _left).offset  zz [on] D MMM arrowImgView.mas  YYYY`

Object.entries({zz:"Central (self.  European Summer Time",z:"CEST"})
  equalTo  .forEach(([key,val]) => str = make.right.  str.replaceAll(key,val))
console.log(str)

Top rated topics

Numpy: How to subtract every other element in array

How to Perform multiplication of two columns displayed in data Table in flutter?

Spring cloud stream + After a producer error subscription to the IN channel breaks

Difficult to understand the difference between application and abstraction in lambda function

Rails cron job between midnight and 1am ET

How to query embedded object field with sql from hazelcast?

Function for returning estimates based on direction of confidence interval values

How to ignore Sonars Duplicate Code Block Warning

Cannot use model.train_on_batch when using @tf.function

Not able to autowire the AmqpTemplate with spring rabitmq 2.4

IDA Hex Rays can't decompile function in automation

Entity Framework Getting current date rows(while time in that day)

Conditional when win_service exists?

Nircmd sendkeypress for underscore '_'

Fading top and bottom edges of a semi transparent and scrollable div with a background video

Markup items in other files on xcode?

How can I limit the height of a row to the height of a specific column? [Bootstrap]

Testing Angular component extending an abstract class

Why is the serial port still open when killing a subprocess?

"error LNK2019: unresolved external symbol" in Windows with VS2019 but build well in Ubuntu

Sws_scale generates malformed video

Understanding why my Postgres queries are faster without indexes

How to create a Tab Group in Google Chrome from the command line

Get the Multi-column filter condition data from MUI datagrid table

Local Variables in Stored Procedures

How to selective change modal backdrop in R Shiny

Grangercausality Test VAR Model

Slice string colum in pandas

Spotipy Current user not working AttributeError: 'str' object has no attribute 'get_access_token'

Flutter:: How to load a file stored in a directory?

Cross domain iframe issue

I am trying to customize the default alert function in react-native to write less code

How can we include a prediction column in the initial dataset/dataframe after performing K-Fold cross validation?

Laravel 8 - How to store a form's data inside a collection?

Akka Actors/Cluster - Monitor meta events

How to use a load event handler as input type value

Why QPainterPath::contains() is not thread-safe, despite being const?

Rollup: inject "import index.css" into the index.ts file

Python LocateOnScreen not working in fullscreen

Image does not display even with correct source

Default worker process does not start in docker without debug mode

Display different text on page depending on number of published posts

Is there a way to intercept java.io.File class in java agent

Getting Summary Data for Longitudinal Data in R

How to decouple Jenkins CI and gitlab CI pipelines?

Is there a way to expect a timeout?

Typescript throwing an error for the wrong type even when the type is right

How to save an image using toyplot (failed example)

Is it possible to throttle Parallel.ForEachAsync in .NET 6.0 to avoid rate limiting?

Powershell output to email doesn't come with table borders

Top