jdelaney Posted June 24, 2013 Posted June 24, 2013 ohhhhh, it's an actual number in the file IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Scinner Posted June 24, 2013 Author Posted June 24, 2013 ohhhhh, it's an actual number in the file Sorry again, my explaining sucks.
water Posted June 24, 2013 Posted June 24, 2013 You da man! Works like a charm! Thanks for understanding my bad English and my bad explaining! Glad I could help My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Scinner Posted June 24, 2013 Author Posted June 24, 2013 Is there a StringStrip that removes everything but numbers? Ex. If I have a .txt with ((12)) it strips the parentheses away?
jdelaney Posted June 24, 2013 Posted June 24, 2013 (edited) This could do it ...replace all non-digits with "" $string = "((22))" $string = StringRegExpReplace ($string, "[^\d]","") ConsoleWrite($string & @CRLF) Edited June 24, 2013 by jdelaney IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Moderators Melba23 Posted June 24, 2013 Moderators Posted June 24, 2013 Scinner, For that you will need a RegEx: $sString = "((12))" $sNewString = StringRegExpReplace($sString, "\D", "") MsgBox(0, "Result", $sNewString) But then your head starts to hurt a lot. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
czardas Posted June 24, 2013 Posted June 24, 2013 (edited) You can also modify the examples given to replace with a delimiter - for example space - if you have lots of numbers in the string. Edited June 24, 2013 by czardas operator64 ArrayWorkshop
Scinner Posted June 24, 2013 Author Posted June 24, 2013 (edited) Scinner, For that you will need a RegEx: $sString = "((12))" $sNewString = StringRegExpReplace($sString, "\D", "") MsgBox(0, "Result", $sNewString) But then your head starts to hurt a lot. M23 Thx, will try to implement that. What do you mean "my head starts to hurt"? Edit: And what if its not a given number but random? Is there a way to strip (( )) out of any number? Edited June 24, 2013 by Scinner
Moderators Solution Melba23 Posted June 24, 2013 Moderators Solution Posted June 24, 2013 (edited) Scinner, RegExes are probably the hardest thing I have ever tried to learn in computing. Some people seem to be able to pick them up very quickly - others, like me, find their brains bleeding when they get complicated, which alas they often do. If you want to take a look at what they are and how they work, I always recommend this site as a good introduction. But enter into the RegEx world at your own risk - they are very useful, but bloody frustrating! M23 Edit: And to answer your added question - that is the wonder of RegExes - they work on patterns, not fixed values. So the 2 examples we gave you will work on any number with any other characters. Just try it: $sString = "~~376??" $sNewString = StringRegExpReplace($sString, "\D", "") MsgBox(0, "Result", $sNewString) See what I mean? Edited June 24, 2013 by Melba23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Scinner Posted June 24, 2013 Author Posted June 24, 2013 (edited) Scinner, RegExes are probably the hardest thing I have ever tried to learn in computing. Some people seem to be able to pick them up very quickly - others, like me, find their brains bleeding when they get complicated, which alas they often do. If you want to take a look at what they are and how they work, I always recommend this site as a good introduction. But enter into the RegEx world at your own risk - they are very useful, but bloody frustrating! M23 Ok, Im not that skilled so I'll better edit the .txt with programmed "Deletes" and "Backspaces" then... Edit: There will allways be only ONE number in the .txt but it can contain 1-6 chars + parentheses. Edited June 24, 2013 by Scinner
Moderators Melba23 Posted June 24, 2013 Moderators Posted June 24, 2013 Scinner,Did you see my edit? RegExes are definitely the way to go if you want to extract digits as you do. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Scinner Posted June 24, 2013 Author Posted June 24, 2013 (edited) Scinner, Did you see my edit? RegExes are definitely the way to go if you want to extract digits as you do. M23 Ahhh... Ok, then I will try that! Thank you sir! Edit: Thank you sirs! Edit 2: Tried it and it works just the way I wanted! U guys rule! Thx Edited June 24, 2013 by Scinner
tonycst Posted June 25, 2013 Posted June 25, 2013 You should read line, not a file. Do a file read line. When u read a file, it returns everything, every line in that file. It could be too much.
Scinner Posted June 25, 2013 Author Posted June 25, 2013 You should read line, not a file. Do a file read line. When u read a file, it returns everything, every line in that file. It could be too much. Thx for the info! The file Im going to read will always only contain 1 number though.
Scinner Posted August 22, 2013 Author Posted August 22, 2013 Is there a way to use FileReadLine to read a line in a variable? Without having to save the variable in a file and then use FileReadLine.
jchd Posted August 22, 2013 Posted August 22, 2013 Your question doesn't make sense. Read the help file again. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
Scinner Posted August 22, 2013 Author Posted August 22, 2013 Your question doesn't make sense. Read the help file again. If I have a string in a variable that contains lots of chars and I want to strip the string down to a specific line, is that possible? Or is there no lines in a variable?
water Posted August 22, 2013 Posted August 22, 2013 "Lines" are separated by linend character(s). What is your linend chracter? @CR, @CRLF? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Scinner Posted August 22, 2013 Author Posted August 22, 2013 How do I know what linend char I have? I get the source from _IEBodyReadHTML into a variable and then I want to strip the string of everything else but one line.
water Posted August 22, 2013 Posted August 22, 2013 Can you post an example of the string? Else it is very hard to suggest a solution. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
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