CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 17

Threaded View

  1. #1
    Join Date
    Mar 2007
    Posts
    144

    VB Regular Expression Help

    Trying to get something like so

    Where the following is allowed

    0-100.#######

    where before the decimal 0 to 100 is allowed and after the decimal always 6 digits of any number.

    I was trying something like this, but I am definitely not any good with RegEx

    Code:
    Like ("^([0-9]|[1-9][0-9]|[1-0][0-0][0-0])\.(######)$")
    Any help would be great
    Last edited by versacestl; August 17th, 2010 at 04:07 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured