joelson 0 Posted September 15, 2010 $search = FileFindFirstFile("*.html*") ; Check if the search was successful If $search = -1 Then MsgBox(0, "Error", "No files/directories matched the search pattern") Exit EndIf While 1 $file = FileFindNextFile($search) If @error Then ExitLoop $web=FileRead($file) $array = StringRegExp($web,'<title>(.*?)</title>',1) for $i = 0 to UBound($array) -1 FileMove($file, $array[$i]&".html",1) Next WEnd FileClose($search)when the tag of html is single line, the code working sample:<title>test</title>when the tag of html is multiline, the code not working sample:<title>testtest</title>how solve this problem? Share this post Link to post Share on other sites
Ascend4nt 131 Posted September 15, 2010 Add '(?s)' to the front of the regular expression. My contributions:Performance Counters in Windows - Measure CPU, Disk, Network etc Performance | Network Interface Info, Statistics, and Traffic | CPU Multi-Processor Usage w/o Performance Counters | Disk and Device Read/Write Statistics | Atom Table Functions | Process, Thread, & DLL Functions UDFs | Process CPU Usage Trackers | PE File Overlay Extraction | A3X Script Extract | File + Process Imports/Exports Information | Windows Desktop Dimmer Shade | Spotlight + Focus GUI - Highlight and Dim for Eyestrain Relief | CrossHairs (FullScreen) | Rubber-Band Boxes using GUI's (_GUIBox) | GUI Fun! | IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) | Magnifier (Vista+) Functions UDF | _DLLStructDisplay (Debug!) | _EnumChildWindows (controls etc) | _FileFindEx | _ClipGetHTML | _ClipPutHTML + ClipPutHyperlink | _FileGetShortcutEx | _FilePropertiesDialog | I/O Port Functions | File(s) Drag & Drop | _RunWithReducedPrivileges | _ShellExecuteWithReducedPrivileges | _WinAPI_GetSystemInfo | dotNETGetVersions | Drive(s) Power Status | _WinGetDesktopHandle | _StringParseParameters | Screensaver, Sleep, Desktop Lock Disable | Full-Screen Crash RecoveryWrappers/Modifications of others' contributions:_DOSWildcardsToPCRegEx (original code: RobSaunder's) | WinGetAltTabWinList (original: Authenticity)UDF's added support/programming to:_ExplorerWinGetSelectedItems | MIDIEx UDF (original code: eynstyne)(All personal code/wrappers centrally located at Ascend4nt's AutoIT Code) Share this post Link to post Share on other sites
trancexx 1,013 Posted September 15, 2010 (edited) (?s) should solve your problems.'(?s)<title>(.*?)</title>'edit:eh... Edited September 15, 2010 by trancexx ♡♡♡ . eMyvnE Share this post Link to post Share on other sites
joelson 0 Posted September 16, 2010 (?s) should solve your problems. '(?s)<title>(.*?)</title>' edit: eh... Thank you all worked well Solved! Share this post Link to post Share on other sites