@hate115 I think no one can teach you for free for this, you have to learn it yourself.
You can:
In BAS there is an image processing module, you should try to learn about it.
It will be easier if the number of images is limited.
Hello guys, girls,
What would be the best way to do the following;
I want to append some streetnames to a box (but they need to be the same else the listbix won't pick them up).
For a single (\s) it works.
Var1: Vingerhoedskruid 43
Var2: Hoogse Dijk 43
Splitting them on (\S)
Var1 becomes "Vingerhoedskruid,43"
Var2 becomes "Hoogse,Dijk,43"
Now on the last one I need "Hoogse Dijk" and not get Hoogse, Dijk)
How can one obtain this?
I've been trying to mess around with https://bablosoft.github.io/RegexpConstructor/#!/regexptest but I can't seem to split it correctly.
Mainly want to split the string twice, once for the number and once for the text before the number.
Use the Regular Expression ---> "Extract all data" with regular expression \d+ (it will extract the numbers only!!!)