HAMID 0 Posted January 31, 2011 This Is a Small Part Of a File : Resources)\idrc_PMST\1119.idrc–%a88a90fc[iNSTALL öäÒÀ®œŠxfTB0 File–WnstallFile–TôòŸôüÅJõ ÊGü3þÒ ËÅ0±è b_óýk… êãøÿö×&Xð‹É_!aüË~-&ýo÷ÿ³X† Ü—pœá7«wó›þaOîï +ðpþëßéŠ)…ÖSŠW§Ôß Ž~þó¿·çáÌÿ ïßú{ÔõýÀqÉoáOºÐUD|Uæ‘?LÒQÊ&ñ7˜CRünòiÌ)ú=ýü«˜ôW éSr³ÿ.þýÜzJ ̈ÛþÒߌç÷á—|¹ø5Îþáÿü×ùöûž}òïÓGûq‘ׄǿö?Bq?“ ‡õ—%¿Þ÷ÿ±£ÿáïÿÿèõÑý'ÿ¯Ë?aôgýÿò?ò×ýØüü« ¿eûÝÿìø·~¯?é_øßÿïÇ¿Þ÷ëýÌo÷ ÿ„ßõOûíÿ‹¿ëÿ>úö ~ï_ûþ}Š·Þÿù‡üÿü³ßüþè_ôOþËOç¿æ¯ûì7ûM?üØ?þü ë?ûéo~ò›üÌ_5ýSæOù¿øgþÝ¿ý_ücÿÇ?°ý÷~×W¿î§_ýƒÿùoþ_ÿ±/> ¹ûþë¿ÿ¿ð¿ýóÏ~Í?èwø'þñƒ¿öKÿ¾lô‡ÿ¡ÿóOþGÿÚþïþÕŸù7ü%Úú§ÿÛ ?÷×ý ~zù§ýùÛÙ_ñoþ How I Can Extract This Words Of File : Resources , INSTALL , ALL , File I Mean Extract meaningful Words Of File I Wrote This Func But I Want This Func Be accurate And Strongly HighSpeed I Want To Used It For Extract Text Of Any File Type Please Help Me #Include <File.au3> #include <String.au3> #include <Array.au3> $SameFiles=_FileListToArray(@ScriptDir , "*.Exe") LevelOne( $SameFiles) Func LevelOne( $SameFiles) ;Define Variables ;------------------------------------> $MemoryFile = @ScriptDir & "\InitialStandardText.Lrn" ;------------------------------------> ;Generate Number For Random Read Files ;----------------------------------------------> If $SameFiles[0]=1 Then $Count=1 Dim $Number[1] $Number[0]="NULL" ElseIf $SameFiles[0]<6 Then $Count=Random(1,$SameFiles[0],1) Dim $Number[$Count] For $i=0 To $Count-1 $Number[$i]="NULL" Next Else $Count=Random(1,6,1) Dim $Number[$Count] For $i=0 To $Count-1 $Number[$i]="NULL" Next EndIf ;MsgBox(0, "", $Count) ;_ArrayDisplay($Number) ;----------------------------------------------> $i=0 While $Number[$Count-1]="NULL" $Number[$i] = Random(1,Int($SameFiles[0]),1) $File = $SameFiles[$Number[$i]] ;Read File ;----------------------------------------------> $OpenedFile=FileOpen($File) $WritedText="" $Read=FileRead($OpenedFile ) ;----------------------------------------------> ;MsgBox(0,"",$Read) $ReadArray=StringToASCIIArray($Read) $Text="" $k=0 While $k<=UBound($ReadArray)-4 ; -4 For Scrutiny $ReadArray[$k+3] In Loop If ($ReadArray[$k]=0) Then $ReadArray[$k]="'" EndIf If ($ReadArray[$k]=$ReadArray[$k+2] And $ReadArray[$k+1]=$ReadArray[$k+3] ) Then $ReadArray[$k]="'" $ReadArray[$k+1]="'" $ReadArray[$k+2]="'" $ReadArray[$k+3]="'" EndIf If ($ReadArray[$k]=$ReadArray[$k+1]) And ($ReadArray[$k+1]=$ReadArray[$k+2]) Then $ReadArray[$k]="'" $ReadArray[$k+1]="'" $ReadArray[$k+2]="'" EndIf $k+=1 WEnd ;_ArrayDisplay($ReadArray) For $k=0 To UBound($ReadArray)-1 If StringIsLower (Chr($ReadArray[$k])) Or StringIsUpper(Chr($ReadArray[$k])) Then $Text=$Text & Chr($ReadArray[$k]) ElseIf (StringLen($Text)<4) And ($ReadArray[$k]<>0) Then $Text="" ElseIf (StringLen($Text)>4) And ($ReadArray[$k]<>0) Then ;FileWrite($hLrnInitialFileTypeMemory,$Text & @CRLF ) ; ---------------------> Must Convert To IniWrite $WritedText = $WritedText & $Text & @CRLF $Text="" EndIf ; StringIsASCII ( Chr($ReadArray[$i]) ) ; Contain Digit Characters ;Local $s = StringFromASCIIArray($ReadArray) ;MsgBox(0, "", $s) ;_ArrayDisplay($a) Next FileClose($OpenedFile) FileWrite($MemoryFile,$WritedText & "<<---------->>" & @CRLF ) $i=$i+1 If $i=$Count Then ExitLoop WEnd EndFunc MiniFinder Share this post Link to post Share on other sites
HAMID 0 Posted January 31, 2011 I forget attach fileExtract Text Of File.zip MiniFinder Share this post Link to post Share on other sites
ivan 1 Posted February 1, 2011 Try using regular expressions. They speed up the process + shorter code. Off the top of my head:$sFilePath = @ScriptDir & '\' & "MyProg 1.exe" $hwnd = FileOpen($sFilePath, 0) If $hwnd = -1 Then Exit $sRead = FileRead($hwnd) $aWords = StringRegExp($sRead, '.+\b', 3) FileClose($hwnd) _ArrayDisplay($aWords,'$aWords') Think out of the boxGrabber: Yet another WinInfo tool_CSVLib (still alpha)Dynamic html in au3 Share this post Link to post Share on other sites
HAMID 0 Posted February 1, 2011 thanks ivani will test yoour code MiniFinder Share this post Link to post Share on other sites
GEOSoft 67 Posted February 1, 2011 (edited) @HAMID DO NOT DOUBLE POST! Stay to one thread when the question is the same. If you are going to be that impatient then you will be getting no meaningful help around here. If Jos hadn't broken my "click" I would be using it right about now. Edited February 1, 2011 by GEOSoft GeorgeQuestion about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else."Old age and treachery will always overcome youth and skill!" Share this post Link to post Share on other sites