Posts

Extracting values from a string using a template in dart

If you have a string like Hello, my name is John and I'm 25 years old., how can you extract the name and age into separate variables from this string? There are various methods to achieve this. A simpler method is to use some form of a text matching. However, we can enhance this text matching idea by using a template string such as Hello, my name is {name} and I'm {age} old.

bmcx

In here I write about software development, computer science, and other things that I find interesting.