Suppir Posted November 25, 2009 Posted November 25, 2009 I have a string: $string = "Bla bla bla" And some code: $Result = StingRegExp($string, "a", 1) Now $Result contains 3 "a". But I need offsets of these matches from the beginning of the string (2, 6, 10). Is it possible to get offsets of matches in AutoIt?
Moderators Melba23 Posted November 25, 2009 Moderators Posted November 25, 2009 Suppir,Use StringInStr within a loop - something like this:#include <Array.au3> Global $aArray[4] = [1] $sString = "Bla bla bla" For $i = 1 To 3 $aArray[$i] = StringInStr($sString, "a", 0, 1, $aArray[0]) $aArray[0] = $aArray[$i] + 1 Next _ArrayDisplay($aArray)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
Suppir Posted November 25, 2009 Author Posted November 25, 2009 (edited) Melba23, while StringInStr does not support regular expressions, this way will not work if we have more complicated pattern. For example:pattern = "[aо]$" (find "a" or "o" at the and of line)StringInStr will not work.Actually, I have to solve this problem to make possible one thing. I want to find some text in Edit (maybe RichEdit) with regular expressions, and then to highlight all matches. To do highlight of symbols I need to know their offsets from the start on string.You know how hyperlink (www...ets) may be automatically highlighted in RichEdit. So, this is possible to other text. Edited November 25, 2009 by Suppir
Moderators Melba23 Posted November 25, 2009 Moderators Posted November 25, 2009 Suppir,If you ask the right question, you might get the right answer and save a lot of time. Take a look at this:#include <Array.au3> Global $aArray[4] $sString = "Bla bla bla" $iOffset = 1 For $i = 1 To 3 $aTemp = StringRegExp($sString, "a", 1, $iOffset) $iOffset = @extended $aArray[$i] = $iOffset - 1 Next _ArrayDisplay($aArray)Are we getting nearer?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
Suppir Posted November 25, 2009 Author Posted November 25, 2009 "If you ask the right question, you might get the right answer and save a lot of time" - sorry fo my English As for your script - it really works! Thanks Actually I see "@extended" macros for the first time *digged in manuals*
Moderators Melba23 Posted November 25, 2009 Moderators Posted November 25, 2009 Suppir,sorry fo my EnglishNo problems - glad we got there! 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
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