@kazecoi97 said in Find a way to solve the "click and hold" captcha.:
Can someone guide me on how to solve the click and hold captcha?
a464a762-d7f8-40bd-be6e-a41aca9d7fca-изображение.png
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!!!)