HeXetic Posted January 3, 2009 Posted January 3, 2009 Hopefully there is a quick an easy solution to this but I couldn't see any solution in the help file. Basically I want to get the integers values out of a string. For example I have the string "IT Manual 18" but I jut want to get the number 18 from it. Thanks in advance.
aommaster Posted January 3, 2009 Posted January 3, 2009 Are they all in the format of: IT Manual ## If so, then just use a stringtrimleft function, strip the whitespace if you need. If you want it to be changed from a string to a number, use the number() function.
HeXetic Posted January 3, 2009 Author Posted January 3, 2009 Yeah they are all in the format of IT Manual ## so stringtrimleft should work just fine. Thanks very much.
Bert Posted January 3, 2009 Posted January 3, 2009 You can also use StringRegExp to do this. That way if the numbers are in a different place in the string, you can still extract them. The Vollatran project My blog: http://www.vollysinterestingshit.com/
BrettF Posted January 3, 2009 Posted January 3, 2009 My Solution. I am just learning RegExp, so one of the more experienced users might have a better solution... CODE$string = "It Manual # 18" $ret = StringRegExpReplace ($string, "[^0-9]", "") MsgBox (0, "", $ret) Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now