SoyArcano 1 Report post Posted October 21, 2017 (edited) i will have one input, in this input i will write a string with some delimiters like hello@this@isanexample but i'm not sure how to separate them ? Edited October 21, 2017 by SoyArcano Share this post Link to post Share on other sites
mikell 617 Report post Posted October 21, 2017 StringSplit ? Share this post Link to post Share on other sites
algiuxas 9 Report post Posted October 21, 2017 (edited) Hello! This is really easy using "StringSplit" function! Example: $text = "abc 123@test@test abc" $split = StringSplit($text,"@") For $i = 1 to $split[0] Consolewrite("$split["&$i&"] = "&$split[$i]&@CRLF) Next ; I will kill Android keyboard... It doesn't want to write spaces and other stuff... $split is an array, $split[0] says how many strings are in this array. Edited October 21, 2017 by algiuxas Share this post Link to post Share on other sites