Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Flutter, how can I write desired function with dart?

I want to print an error message if a letter comes after the first two letters in the following expression.

EN545454545

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

You can try using the tryParse method of num, if it fails parsing it returns null which means it contained some illegal characters

  String code = 'EN545454545';
  if (num.tryParse(code.substring(2)) == null) {
    // Handle error
  }
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading