Languages
[Edit]
EN

JavaScript - remove leading commas using regular expression

3 points
Created by:
Zayaan-Rasmussen
543

In this article, we would like to show you how to remove leading commas from string using regular expression in JavaScript.

Practical example

Edit

In this example, we use replace() method with /^,+/ regular expression to remove leading commas from the text.

Regular expression explanation:

  • ^ - matches the beginning of the string,
  • , - matches comma character,
  • + - matches one or more of the preceding token (in our case one or more ,).

 

References

Edit
  1. String.prototype.replace() - JavaScript | MDN

Alternative titles

  1. JavaScript - remove leading commas using regex
  2. JavaScript - remove leading commas from string using regular expression
1
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join