Starfighter Posted July 20, 2007 Posted July 20, 2007 Hi People, I'm a little confused. I made the following code for a HTML file: #include <String.au3> Dim $Return Dim $String $String="<http://ia.imdb.com/media/imdb/01/I/12/89/28m.jpg><http://i.imdb.com/images/tn15/addtiny.gif><http://ia.imdb.com/media/imdb/01/I/88/55/12t.jpg>" $Return=StringRegExpReplace($String,'<http:(.*?).gif>','',0) Msgbox(0,"Test",$Return) The Msgbox function shows only this URL-link: <http://ia.imdb.com/media/imdb/01/I/88/55/12t.jpg> Boah, that's an odd thing! I want see only these URL-links: <http://ia.imdb.com/media/imdb/01/I/12/89/28m.jpg><http://ia.imdb.com/media/imdb/01/I/88/55/12t.jpg> I want delete all GIF images. How can I solve this problem? Please help me. Many thanks
mikehunt114 Posted July 20, 2007 Posted July 20, 2007 (edited) How about: #include <Array.au3> #include <String.au3> $originalString = "<http://ia.imdb.com/media/imdb/01/I/12/89/28m.jpg><http://i.imdb.com/images/tn15/addtiny.gif><http://ia.imdb.com/media/imdb/01/I/88/55/12t.jpg>" $newString = _StringBetween($originalString, "<", ">") $bound = UBound($newString) - 1 $i = 0 While $i < $bound If StringInStr($newString[$i], "gif") Then _ArrayDelete($newString, $i) $bound = UBound($newString) - 1 EndIf $i += 1 WEnd _ArrayDisplay($newString) Edited July 20, 2007 by mikehunt114 IE Dev ToolbarMSDN: InternetExplorer ObjectMSDN: HTML/DHTML Reference Guide[quote]It is surprising what a man can do when he has to, and how little most men will do when they don't have to. - Walter Linn[/quote]--------------------[font="Franklin Gothic Medium"]Post a reproducer with less than 100 lines of code.[/font]
MrCreatoR Posted July 20, 2007 Posted July 20, 2007 (edited) Boah, that's an odd thing!Not at all... Here is what happend - the RegExp engien finds first <, and then search for any string until .gif, witch is founded at the center of your string, so now all that, is stripped, and you get only what remained (<http://ia.imdb.com/media/imdb/01/I/88/55/12t.jpg> - the last url string). Try this: $Return = StringRegExpReplace($String, '(?i).<http:(.*?).gif', '') But it can be done more "safer". Edit: Spell mistakes and the RegExp a litle. Edited July 20, 2007 by MsCreatoR Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team
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