Hi all,
Can anyone help …
I want to split a String “10
ingredients” by using New Line in Split() and just print the 10 Value in message box
Thanks.
Hi all,
Can anyone help …
I want to split a String “10
ingredients” by using New Line in Split() and just print the 10 Value in message box
Thanks.
you can use Environment.Newline for splitting thee string by newline character
strString.Splt(Environment.Newline)
Try out this
Out_str=Yourstring.Split(Environment.newline).Last
Thanks
Robin
wow. happy to see these many solutions for single question and all are valid in its own way. now @saritha decision to go in which way. ![]()
VbCrLf works for me usually, too, but the Environment.Newline is nice to know.
![]()
Yeah, but in studioX everything works a bit different, so I had to check before I wrote anything in this post ![]()