Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Is regular expression a must for doing programming?

0
Posted

Is regular expression a must for doing programming?

0

If you are planning to write programs for any kind of dynamic webpage generation you will find regular expressions almost indispensable. If you are purely interested in numerical methods and dynamic simulation you can do without them completely. Real text-editors always give you the opportunity to use regular expressions for globally editing files. This makes finding things in files much easier, and much less prone to error than searching line by line. You might want to search a directory containing hundreds of files for all of the files with names containing a particular substring. Using a regular expression allows you to find them without searching through the whole directory listing. So the answer is maybe: It depends on what kind of programming you are doing.

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123