S splatt Active Member Licensed User Longtime User Jan 21, 2011 #1 In a multiline EditText view, is it possible to access the text through a lines Array, e.g. EditText1.lines(4)?
In a multiline EditText view, is it possible to access the text through a lines Array, e.g. EditText1.lines(4)?
Erel B4X founder Staff member Licensed User Longtime User Jan 21, 2011 #2 You can split the text using: B4X: Dim lines() as String lines = Regex.Split(CRLF, EditText1.Text) Upvote 0