kegiaumat055 Posted April 29, 2012 Share Posted April 29, 2012 (edited) How to add link breaks with random sentences in a paragraph? Example: Sentence1. Sentence2. Sentence3. Sentence4. Sentence5. Sentence6. Sentence7 ---> result: Sentence1. Sentence2. Sentence3. Sentence4. Sentence5. Sentence6. Sentence7 Please help me ! Edited April 30, 2012 by kegiaumat055 Link to comment Share on other sites More sharing options...
kaotkbliss Posted April 29, 2012 Share Posted April 29, 2012 you could use stringsplit using the period, then write your lines with 2 results per line. kegiaumat055 1 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy! Link to comment Share on other sites More sharing options...
kegiaumat055 Posted April 29, 2012 Author Share Posted April 29, 2012 #include <string.au3> #include <array.au3> $open= FileOpen('input.txt', 128) If @error Then Exit $update=FileOpen('output.txt',128+8+1) If @error Then Exit $text=FileReadline($open) $random = random(1, 10) $split = StringSplit($text,".") if @error then Exit Can you help me write the rest, please ? Link to comment Share on other sites More sharing options...
kegiaumat055 Posted April 30, 2012 Author Share Posted April 30, 2012 (edited) #include<String.au3> $open= FileOpen('input.txt', 128) If @error Then Exit $update=FileOpen('output.txt',128+8+1) If @error Then Exit $text=FileRead($open) $split = StringSplit($text,".") if @error then Exit $sens=StringSplit($text,".",1) for $i=1 to $sens[0] FileWrite($update, $sens[$i] & ".") If mod($i,random(2,3,1)) == 1 Then FileWrite($update, @CRLF) Next FileClose($update) FileClose($open)What is wrong ? It show an error :"Next statement with no matching for statement" Edited April 30, 2012 by kegiaumat055 Link to comment Share on other sites More sharing options...
tonycst Posted April 30, 2012 Share Posted April 30, 2012 Am not sure what you trying to accomplish here.New line is usualy created by @CRLFMsgBox(0,"","line 1" & @CRLF & "line 2")orGUICtrlCreateEdit ("line 1" & @CRLF & "line 2",0,0,100,60)Or are you trying to read the file and detect where it brakes the line ? kegiaumat055 1 Link to comment Share on other sites More sharing options...
kegiaumat055 Posted April 30, 2012 Author Share Posted April 30, 2012 I wanna add link breaks to random sentences ? You can see my example. Sorry, my english isn't good ! Link to comment Share on other sites More sharing options...
czardas Posted April 30, 2012 Share Posted April 30, 2012 (edited) I'm not sure if this is exactly what you want or not. $open= FileOpen('input.txt', 128) If @error Then Exit $update=FileOpen('output.txt',128+8+1) If @error Then Exit $text=FileRead($open) StringReplace($text, @CR, "") StringReplace($text, @LF, "") $text = StringStripWS($text, 2) If StringRight($text, 1) = "." Then $text = StringTrimRight($text, 1) ; <== ERROR WAS HERE $sens = StringSplit($text,".",1) $sString = "" If $sens[0] Then $sString = $sens[1] & "." If $sens[0] > 1 Then For $i = 2 To $sens[0] If $sens[$i] = "" Then ContinueLoop If random(0,2,1) Then $sString &= $sens[$i] & "." Else $sString &= @CRLF & StringStripWS($sens[$i], 1) & "." EndIf Next EndIf FileWrite($update, $sString) Actually this isn't necessarily the best solution, but I'm still not entirely sure what the input.txt will contain. Edited May 4, 2012 by czardas kegiaumat055 1 operator64Â Â ArrayWorkshop Link to comment Share on other sites More sharing options...
kegiaumat055 Posted April 30, 2012 Author Share Posted April 30, 2012 (edited) I'm not sure if this is exactly what you want or not. $open= FileOpen('input.txt', 128) If @error Then Exit $update=FileOpen('output.txt',128+8+1) If @error Then Exit $text=FileRead($open) StringReplace($text, @CR, "") StringReplace($text, @LF, "") $text = StringStripWS($text, 2) If StringRight($text, 1) = "." Then StringTrimRight($text, 1) $sens = StringSplit($text,".",1) $sString = "" If $sens[0] Then $sString = $sens[1] & "." If $sens[0] > 1 Then For $i = 2 To $sens[0] If $sens[$i] = "" Then ContinueLoop If random(0,2,1) Then $sString &= $sens[$i] & "." Else $sString &= @CRLF & StringStripWS($sens[$i], 1) & "." EndIf Next EndIf FileWrite($update, $sString) Actually this isn't necessarily the best solution, but I'm still not entirely sure what the input.txt will contain. It has an error. Please fix it ! Edited April 30, 2012 by kegiaumat055 Link to comment Share on other sites More sharing options...
BrewManNH Posted April 30, 2012 Share Posted April 30, 2012 It has an error. Please fix it ! WOW, that was incredibly rude. kegiaumat055 1 If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator Link to comment Share on other sites More sharing options...
czardas Posted April 30, 2012 Share Posted April 30, 2012 (edited) It has an error. What error do you get? It works for the input you provided. sentence1. sentence2. sentence3. sentence4. sentence5. sentence6. sentence7. Edited April 30, 2012 by czardas kegiaumat055 1 operator64Â Â ArrayWorkshop Link to comment Share on other sites More sharing options...
kegiaumat055 Posted May 1, 2012 Author Share Posted May 1, 2012 What error do you get? It works for the input you provided. sentence1. sentence2. sentence3. sentence4. sentence5. sentence6. sentence7. You can see an error in my attach file. Can you fix it for me, please ? Link to comment Share on other sites More sharing options...
czardas Posted May 1, 2012 Share Posted May 1, 2012 I don't know - I can't recreate that error. It's possible you copied the wrong code, because I did make some changes to it. Does the code work for anyone else? kegiaumat055 1 operator64Â Â ArrayWorkshop Link to comment Share on other sites More sharing options...
guinness Posted May 1, 2012 Share Posted May 1, 2012 I agree with BrewManNH, just rude. czardas,I don't have a problem with your code in post #7. The output I got wasSentence1. Sentence2. Sentence3. Sentence4.Sentence5. Sentence6. Sentence7. kegiaumat055 1 UDF List:  _AdapterConnections() • _AlwaysRun() • _AppMon() • _AppMonEx() • _ArrayFilter/_ArrayReduce • _BinaryBin() • _CheckMsgBox() • _CmdLineRaw() • _ContextMenu() • _ConvertLHWebColor()/_ConvertSHWebColor() • _DesktopDimensions() • _DisplayPassword() • _DotNet_Load()/_DotNet_Unload() • _Fibonacci() • _FileCompare() • _FileCompareContents() • _FileNameByHandle() • _FilePrefix/SRE() • _FindInFile() • _GetBackgroundColor()/_SetBackgroundColor() • _GetConrolID() • _GetCtrlClass() • _GetDirectoryFormat() • _GetDriveMediaType() • _GetFilename()/_GetFilenameExt() • _GetHardwareID() • _GetIP() • _GetIP_Country() • _GetOSLanguage() • _GetSavedSource() • _GetStringSize() • _GetSystemPaths() • _GetURLImage() • _GIFImage() • _GoogleWeather() • _GUICtrlCreateGroup() • _GUICtrlListBox_CreateArray() • _GUICtrlListView_CreateArray() • _GUICtrlListView_SaveCSV() • _GUICtrlListView_SaveHTML() • _GUICtrlListView_SaveTxt() • _GUICtrlListView_SaveXML() • _GUICtrlMenu_Recent() • _GUICtrlMenu_SetItemImage() • _GUICtrlTreeView_CreateArray() • _GUIDisable() • _GUIImageList_SetIconFromHandle() • _GUIRegisterMsg() • _GUISetIcon() • _Icon_Clear()/_Icon_Set() • _IdleTime() • _InetGet() • _InetGetGUI() • _InetGetProgress() • _IPDetails() • _IsFileOlder() • _IsGUID() • _IsHex() • _IsPalindrome() • _IsRegKey() • _IsStringRegExp() • _IsSystemDrive() • _IsUPX() • _IsValidType() • _IsWebColor() • _Language() • _Log() • _MicrosoftInternetConnectivity() • _MSDNDataType() • _PathFull/GetRelative/Split() • _PathSplitEx() • _PrintFromArray() • _ProgressSetMarquee() • _ReDim() • _RockPaperScissors()/_RockPaperScissorsLizardSpock() • _ScrollingCredits • _SelfDelete() • _SelfRename() • _SelfUpdate() • _SendTo() • _ShellAll() • _ShellFile() • _ShellFolder() • _SingletonHWID() • _SingletonPID() • _Startup() • _StringCompact() • _StringIsValid() • _StringRegExpMetaCharacters() • _StringReplaceWholeWord() • _StringStripChars() • _Temperature() • _TrialPeriod() • _UKToUSDate()/_USToUKDate() • _WinAPI_Create_CTL_CODE() • _WinAPI_CreateGUID() • _WMIDateStringToDate()/_DateToWMIDateString() • Au3 script parsing • AutoIt Search • AutoIt3 Portable • AutoIt3WrapperToPragma • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • DirToHTML5 • FileInstallr • FileReadLastChars() • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIEvents • GUIGetBkColor() • Int_Parse() & Int_TryParse() • IsISBN() • LockFile() • Mapping CtrlIDs • OOP in AutoIt • ParseHeadersToSciTE() • PasswordValid • PasteBin • Posts Per Day • PreExpand • Protect Globals • Queue() • Resource Update • ResourcesEx • SciTE Jump • Settings INI • SHELLHOOK • Shunting-Yard • Signature Creator • Stack() • Stopwatch() • StringAddLF()/StringStripLF() • StringEOLToCRLF() • VSCROLL • WM_COPYDATA • More Examples... Updated: 22/04/2018 Link to comment Share on other sites More sharing options...
czardas Posted May 1, 2012 Share Posted May 1, 2012 I agree with BrewManNH, just rude.Perhaps it was not intentional: since the OP's mother tongue is not English. I gave him the benefit of the doubt. Thanks for testing the script. The flags in the 3rd line really ought to be BitOr'ed together, but I didn't write that part. kegiaumat055 1 operator64Â Â ArrayWorkshop Link to comment Share on other sites More sharing options...
kegiaumat055 Posted May 1, 2012 Author Share Posted May 1, 2012 Perhaps it was not intentional: since the OP's mother tongue is not English. I gave him the benefit of the doubt. Thanks for testing the script. The flags in the 3rd line really ought to be BitOr'ed together, but I didn't write that part. Yes, it was not intentional. My english isn't good.I copied your code into excel, then I copy to AutoIt editor. If I copy your code directly into AutoIt editor, it will only have one line. Link to comment Share on other sites More sharing options...
AdmiralAlkex Posted May 1, 2012 Share Posted May 1, 2012 Try copying from the popup and/or with a different browser kegiaumat055 1 .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface Link to comment Share on other sites More sharing options...
czardas Posted May 1, 2012 Share Posted May 1, 2012 (edited) Okay that's a problem with the forum code tags. You should click the option where it says popup and the code appears in a new window. If you copy that and paste it directly into SciTE it should work fine. AdmiralAlkex got there first. Edited May 1, 2012 by czardas kegiaumat055 1 operator64Â Â ArrayWorkshop Link to comment Share on other sites More sharing options...
guinness Posted May 1, 2012 Share Posted May 1, 2012 Yes, it was not intentional. My english isn't good.OK, understood. kegiaumat055 1 UDF List:  _AdapterConnections() • _AlwaysRun() • _AppMon() • _AppMonEx() • _ArrayFilter/_ArrayReduce • _BinaryBin() • _CheckMsgBox() • _CmdLineRaw() • _ContextMenu() • _ConvertLHWebColor()/_ConvertSHWebColor() • _DesktopDimensions() • _DisplayPassword() • _DotNet_Load()/_DotNet_Unload() • _Fibonacci() • _FileCompare() • _FileCompareContents() • _FileNameByHandle() • _FilePrefix/SRE() • _FindInFile() • _GetBackgroundColor()/_SetBackgroundColor() • _GetConrolID() • _GetCtrlClass() • _GetDirectoryFormat() • _GetDriveMediaType() • _GetFilename()/_GetFilenameExt() • _GetHardwareID() • _GetIP() • _GetIP_Country() • _GetOSLanguage() • _GetSavedSource() • _GetStringSize() • _GetSystemPaths() • _GetURLImage() • _GIFImage() • _GoogleWeather() • _GUICtrlCreateGroup() • _GUICtrlListBox_CreateArray() • _GUICtrlListView_CreateArray() • _GUICtrlListView_SaveCSV() • _GUICtrlListView_SaveHTML() • _GUICtrlListView_SaveTxt() • _GUICtrlListView_SaveXML() • _GUICtrlMenu_Recent() • _GUICtrlMenu_SetItemImage() • _GUICtrlTreeView_CreateArray() • _GUIDisable() • _GUIImageList_SetIconFromHandle() • _GUIRegisterMsg() • _GUISetIcon() • _Icon_Clear()/_Icon_Set() • _IdleTime() • _InetGet() • _InetGetGUI() • _InetGetProgress() • _IPDetails() • _IsFileOlder() • _IsGUID() • _IsHex() • _IsPalindrome() • _IsRegKey() • _IsStringRegExp() • _IsSystemDrive() • _IsUPX() • _IsValidType() • _IsWebColor() • _Language() • _Log() • _MicrosoftInternetConnectivity() • _MSDNDataType() • _PathFull/GetRelative/Split() • _PathSplitEx() • _PrintFromArray() • _ProgressSetMarquee() • _ReDim() • _RockPaperScissors()/_RockPaperScissorsLizardSpock() • _ScrollingCredits • _SelfDelete() • _SelfRename() • _SelfUpdate() • _SendTo() • _ShellAll() • _ShellFile() • _ShellFolder() • _SingletonHWID() • _SingletonPID() • _Startup() • _StringCompact() • _StringIsValid() • _StringRegExpMetaCharacters() • _StringReplaceWholeWord() • _StringStripChars() • _Temperature() • _TrialPeriod() • _UKToUSDate()/_USToUKDate() • _WinAPI_Create_CTL_CODE() • _WinAPI_CreateGUID() • _WMIDateStringToDate()/_DateToWMIDateString() • Au3 script parsing • AutoIt Search • AutoIt3 Portable • AutoIt3WrapperToPragma • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • DirToHTML5 • FileInstallr • FileReadLastChars() • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIEvents • GUIGetBkColor() • Int_Parse() & Int_TryParse() • IsISBN() • LockFile() • Mapping CtrlIDs • OOP in AutoIt • ParseHeadersToSciTE() • PasswordValid • PasteBin • Posts Per Day • PreExpand • Protect Globals • Queue() • Resource Update • ResourcesEx • SciTE Jump • Settings INI • SHELLHOOK • Shunting-Yard • Signature Creator • Stack() • Stopwatch() • StringAddLF()/StringStripLF() • StringEOLToCRLF() • VSCROLL • WM_COPYDATA • More Examples... Updated: 22/04/2018 Link to comment Share on other sites More sharing options...
kegiaumat055 Posted May 1, 2012 Author Share Posted May 1, 2012 Great ! It worked. Thank you very very much Link to comment Share on other sites More sharing options...
kegiaumat055 Posted May 3, 2012 Author Share Posted May 3, 2012 (edited) I'm not sure if this is exactly what you want or not. $open= FileOpen('input.txt', 128) If @error Then Exit $update=FileOpen('output.txt',128+8+1) If @error Then Exit $text=FileRead($open) StringReplace($text, @CR, "") StringReplace($text, @LF, "") $text = StringStripWS($text, 2) If StringRight($text, 1) = "." Then StringTrimRight($text, 1) $sens = StringSplit($text,".",1) $sString = "" If $sens[0] Then $sString = $sens[1] & "." If $sens[0] > 1 Then For $i = 2 To $sens[0] If $sens[$i] = "" Then ContinueLoop If random(0,2,1) Then $sString &= $sens[$i] & "." Else $sString &= @CRLF & StringStripWS($sens[$i], 1) & "." EndIf Next EndIf FileWrite($update, $sString) Actually this isn't necessarily the best solution, but I'm still not entirely sure what the input.txt will contain. How to add link breaks with random (between 3 to 6) sentences in a paragraph? What should I do ? For example: input.txt Sentence1. Sentence2. Sentence3. Sentence4. Sentence5. Sentence6. Sentence7. Sentence8. Sentence9. Sentence10. Sentence11. Sentence12. Sentence13. Sentence14. Sentence15. Output.txt Sentence1. Sentence2. Sentence3. Sentence4. Sentence5. Sentence6. Sentence7. Sentence8. Sentence9. Sentence10. Sentence11. Sentence12. Sentence13. Sentence14. Sentence15. Edited May 3, 2012 by kegiaumat055 Link to comment Share on other sites More sharing options...
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