CaptainSparky Posted June 8, 2015 Posted June 8, 2015 Hello good friends of Autoit, so I am making a chatbot using Autoit but I got stuck on this part:I already have stringright($var,stringlen($var) - stringlen(" = ") - StringInStr($var," = ") + 1) the program is made to read a text file and extract from a specific line the text after = and before =, for example:example line of text file: something = okay this is a textand I needed to extract the right part (which I already have done) and the left part (which I need help with) so how can you make stringleft to get all text before "="?Thanks in advance.Here's my code if you need it:expandcollapse popup#include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <File.au3> #include <Misc.au3> #Include <Array.au3> Global $BrainLocation = @ScriptDir & "\brain.txt" Global $FormName = "Project Lisa" Global $ReatInput = "null" Global $Memory[100] Global $BrainLineCount = 1 Global $Random[100] Global $RandomCount = 0 Global $SplitInput[100] Global $BrainCount = 0 Loader() Func Loader() Global $Form = GUICreate($FormName, 417, 279, 192, 124) Global $Output = GUICtrlCreateEdit("", 8, 8, 401, 225, BitOR($ES_AUTOVSCROLL,$ES_AUTOHSCROLL,$ES_WANTRETURN,$WS_HSCROLL),0) Global $Input = GUICtrlCreateInput("", 104, 240, 209, 21) GUISetState(@SW_SHOW) ControlFocus($FormName,"",$input) HotKeySet("{ENTER}","SendText") Main() EndFunc func Main() While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd EndFunc Func SendText() $ReatInput = GUICtrlRead($Input) GUICtrlSetData($Output,@CRLF & "You > " & $ReatInput,1) CreateRandoms() EndFunc Func CreateRandoms() While $RandomCount <> 100 $Random[$RandomCount] = Random(1,$RandomCount,1) $RandomCount += 1 WEnd $RandomCount = 0 BrainLoader() EndFunc Func BrainLoader() $ReatBrain = FileReadLine($Brainlocation,$BrainLineCount) $BrainStringRight = stringright($ReatBrain,stringlen($ReatBrain) - stringlen(" = ") - StringInStr($ReatBrain," = ") + 1) MsgBox(0,"",$Brainstringright) $BrainStringLenRight = Stringlen($brainstringright) MsgBox(0,"",$Brainstringright) $BrainActualString = 0 + $BrainStringLenRight - 10 MsgBox(0,"",$BrainActualString) $test = StringLeft($ReatBrain,$brainactualstring) MsgBox(0,"",$test) $BrainSplitedStrings = StringSplit($BrainStringRight,",") If $BrainSplitedStrings[1] <> "" Then $_1 = "true" $BrainCount += 1 EndIf If $ReatInput = $BrainActualString Then $BrainRan = Random(1,$braincount) GUICtrlSetData($output,@CRLF & "Lisa > " & $BrainSplitedStrings[$BrainRan],1) $BrainLineCount = 1 Main() Else main() EndIf $BrainLineCount += 1 BrainLoader() EndFunc Hello. If in someway I have helped, please consider liking my post(s). The formula for the right answer: You + Right Question = Answer (Think) BEFORE you post.
javiwhite Posted June 8, 2015 Posted June 8, 2015 if you need both parts of the text, why don't you just use stringsplit?$text = "some = text" $Split = StringSplit($text,"=") ConsoleWrite($Split[1]) ;Some ConsoleWrite(@CR) ConsoleWrite($Split[2]) ;TextMany ThanksJavi CaptainSparky 1 give a man an application, and he'll be frustrated for the day, Teach him how to program applications and he'll be frustrated for a lifetime.
CaptainSparky Posted June 8, 2015 Author Posted June 8, 2015 Holy cow! HOW DID I DIDN'T THINK OF THAT? how stupid of me. Thank you good friend. Hello. If in someway I have helped, please consider liking my post(s). The formula for the right answer: You + Right Question = Answer (Think) BEFORE you post.
Skysnake Posted June 8, 2015 Posted June 8, 2015 Also look at the Regular Expressions? Skysnake Why is the snake in the sky?
TheDcoder Posted June 8, 2015 Posted June 8, 2015 You might wanna look at my StringTrimRightUntil & StringTrimLeftUntil functions hereThey are more efficient & simple! TD EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time) DcodingTheWeb Forum - Follow for updates and Join for discussion
CaptainSparky Posted June 8, 2015 Author Posted June 8, 2015 Thank you guys. Hello. If in someway I have helped, please consider liking my post(s). The formula for the right answer: You + Right Question = Answer (Think) BEFORE you post.
CaptainSparky Posted June 8, 2015 Author Posted June 8, 2015 (edited) Sorry that didn't work out... I need the opposite ( the left version ) of this one : stringright($var,stringlen($var) - stringlen(" = ") - StringInStr($var," = ") + 1)I need to stringleft after/before a specific character(s) for example in the one above is after =, the one I need should be Get all text BEFORE =.anyone? thanks in advance Edited June 8, 2015 by TheNewHunter Hello. If in someway I have helped, please consider liking my post(s). The formula for the right answer: You + Right Question = Answer (Think) BEFORE you post.
CaptainSparky Posted June 8, 2015 Author Posted June 8, 2015 Okay I got it guys. Hello. If in someway I have helped, please consider liking my post(s). The formula for the right answer: You + Right Question = Answer (Think) BEFORE you post.
javiwhite Posted June 9, 2015 Posted June 9, 2015 StringSplit all the way my friend, Even if it's just for ease of reading when you come back to a code a few months later (it's amazing how a solution to a problem you face can seem innovative at the time, But then Jargon when you come back to the code.) Even if you're just looking for the left part of the string, StringSplit can accomplish this:$text = "some = text" $Left = StringSplit($text,"=")[1] ;Notice the array number $Right = StringSplit($text,"=")[2] ;These run the stringsplit command, And then return that element to the variable from the resulting array Consolewrite($Left) ConsoleWrite(@CR) ConsoleWrite($Right)Just a handy little trick I discovered after a while of using AutoIt, The same applies to any commands that return arrays.CheersJavi CaptainSparky 1 give a man an application, and he'll be frustrated for the day, Teach him how to program applications and he'll be frustrated for a lifetime.
MikahS Posted June 9, 2015 Posted June 9, 2015 @TheNewHunter Make sure you post your solution, so that anyone that has the same problem can see how you solved it. CaptainSparky 1 Snips & Scripts My Snips: graphCPUTemp ~ getENVvarsMy Scripts: Short-Order Encrypter - message and file encryption V1.6.1 ~ AuPad - Notepad written entirely in AutoIt V1.9.4 Feel free to use any of my code for your own use.                                                                              Forum FAQ Â
Malkey Posted June 10, 2015 Posted June 10, 2015 Also look at the Regular Expressions?Using a regular expression allows control over optional spaces before and after the equal sign, and having those spaces (if they exist) not appearing in the required 'before and after' text.$text = "some = text" ; These StringRegExpReplace replaces all text matched with nothing, "". (Match the characters to be deleted) $Left = StringRegExpReplace($text, "\h*=.*$", "") ; "\h*" Match all spaces (if they exist) immediately before "=". Note:- A space is a character, and can be classified as a horizontal whitespace character. ; "=" Match the equal character. ; ".*$" Match all characters (if any exist) to the end of the test string (from immediately after "="). $Right = StringRegExpReplace($text, "^.*=\h*", "") ; "^.*" Match all characters (if any exist) from the beginning of the test string to immediately before "=". ; "=" Match the equal character. ; "\h*" Match all spaces (if they exist) immediately after "=". ; See AutoIt help file under StringRegExp for regular expression syntax. ConsoleWrite("Left: " & $Left & @LF) ConsoleWrite("Right: " & $Right & @LF)@javiwhiteAnother handy little trick, if you are writing your scripts in SciTE, is to type in lower case "cw ". That is, type"cw" followed by a space. This is the SciTE4AutoIt3 abbreviation for "ConsoleWrite(| & @LF) ". I use it often.  The complete list of SciTe-AutoIt abbreviations can be found in the SciTe help file > under the "Index" tab > SciTE4AutoIt3-AbbreviationList. javiwhite and Skysnake 2
iamtheky Posted June 10, 2015 Posted June 10, 2015 Just a handy little trick I discovered after a while of using AutoIt, The same applies to any commands that return arrays.You have no validation that stringsplit succeeded and risk throwing an exception attempting to access an element that does not exist, so you may want to do a stringinstr to verify an equals sign is present prior to running that. Â or just split it once and check for an error then access the elements. ,-. .--. ________ .-. .-. ,---. ,-. .-. .-. .-. |(| / /\ \ |\ /| |__ __||| | | || .-' | |/ / \ \_/ )/ (_) / /__\ \ |(\ / | )| | | `-' | | `-. | | / __ \ (_) | | | __ | (_)\/ | (_) | | .-. | | .-' | | \ |__| ) ( | | | | |)| | \ / | | | | | |)| | `--. | |) \ | | `-' |_| (_) | |\/| | `-' /( (_)/( __.' |((_)-' /(_| '-' '-' (__) (__) (_) (__)
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