tutor2000 0 Posted May 30, 2004 If I have an email in the clipboard and want to parse for the word subject and the next 10 characters after that, how can I do that since it's all one big variable which means I cannot use filereadline Rick Only $2.00 with Resale Rights How to Block Better for Martial Artists and NonMartial Artistshttp://kirkhamsebooks.com/MartialArts/Bloc...tterEbook_m.htm Share this post Link to post Share on other sites
Jos 2,164 Posted May 30, 2004 Do you mean something like this : $text = ClipGet() $text = " kjka kj dkaj try Subject1234567890 aksjhd ahsd asjhd ajsh as a " ; in here for testing it $text = StringTrimLeft($text,StringInStr($text,"Subject")-1) $text = StringLeft($text,17) msgbox(0,'test',$text) SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites
tutor2000 0 Posted May 30, 2004 Do you mean something like this : $text = ClipGet() $text = " kjka kj dkaj try Subject1234567890 aksjhd ahsd asjhd ajsh as a "; in here for testing it $text = StringTrimLeft($text,StringInStr($text,"Subject")-1) $text = StringLeft($text,17) msgbox(0,'test',$text)Man that was fast and it worked to thanks you're a genius Rick Only $2.00 with Resale Rights How to Block Better for Martial Artists and NonMartial Artistshttp://kirkhamsebooks.com/MartialArts/Bloc...tterEbook_m.htm Share this post Link to post Share on other sites