Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
Regex is a perfect candidate for this.Something like Regex.Match would probably do the trick. The regular expression might look something like [0-9]\.[0-9] which says "any single digit 0-9 followed by a . followed by any single digit 0-9.
Regex is a perfect candidate for this.
Something like Regex.Match would probably do the trick. The regular expression might look something like [0-9]\.[0-9] which says "any single digit 0-9 followed by a . followed by any single digit 0-9.