Jump to content

Recommended Posts

Posted

I am having problems with understanding StringRegExp. The example doesn't help me, but get me more confused. I don't seem to have that pattern correct.

This is what I am trying to do. I have a folder that I am trying to check to see if it has only numbers and dots or periods in it. It doesn't matter in what order just as long it contains only numbers and dots.

$a = StringRegExp(10.0.648.133,"\d.\d.\d.\d")

RUN . . . Slide . . . TAG . . . Your out . . . PAINTBALL !!!

  • Moderators
Posted

"^(?:\d|\.)+\z"

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Posted

Thanks for the help. I don't know why, but I have never figured out StringRegExp. Solved.

RUN . . . Slide . . . TAG . . . Your out . . . PAINTBALL !!!

Posted

Just for the record

Here is another one

"^[0-9.]+$"

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...