How resolve this captcha?

javier

Новичок
Регистрация
25.08.2012
Сообщения
93
Благодарностей
0
Баллы
0

rostonix

Известная личность
Регистрация
23.12.2011
Сообщения
29 067
Благодарностей
5 712
Баллы
113
Sure they do. Most or workers for anti captcha services I bet couldn't understand what instruction means)
 

javier

Новичок
Регистрация
25.08.2012
Сообщения
93
Благодарностей
0
Баллы
0
Hi,

I use free ocr service, with captcha, and I convert captcha image to:

Copia las letras de las
posiciones 2, 4 g 6
B B Q Z X N P T T
123456789

Now I can take this line 2 and 3 and resolve captcha with word precesing.

I go to work
 

javier

Новичок
Регистрация
25.08.2012
Сообщения
93
Благодарностей
0
Баллы
0
I have problems with img captcha

When I download using captchasaver.dll the OCR service can't open image if I download manually can open.

If I try to open image with explorer can`t open too. With paint I can see image.

Any idea
 

javier

Новичок
Регистрация
25.08.2012
Сообщения
93
Благодарностей
0
Баллы
0
Hi,

I change of ocr service and now have this alone string:

Copia las letras de las posiciones 2, 3 y 4 ZXJTQJAUP

I need do a regex to take numbers and put in a list:
0;2
1;3
2;4

and other for put in list last letters:
0;Z
1;X
2;J
3;T
4;Q
5;J
6;A
7;U
8;P

I think this is only solution, I no see other, but I can't make the regex that I need.


thanks for read

bye
 

Paginator

Client
Регистрация
30.09.2012
Сообщения
7
Благодарностей
0
Баллы
0
Regex 1:
\d{1};\d{1}

Regex 2:
\d{1};[A-Z]{1}
 

javier

Новичок
Регистрация
25.08.2012
Сообщения
93
Благодарностей
0
Баллы
0
Hi,

I try to use your regex but I don't find nothing to parse.

I apreciate your help Paginator.
 

javier

Новичок
Регистрация
25.08.2012
Сообщения
93
Благодарностей
0
Баллы
0
Hi,

I try an try with your reg and I can't have the character that I need

This is the text: Copia las letras de las posiciones 3, 4 y 5 QZJVGQ5EZ

I try this regex for take only number:

(?<=\d{1}).*(?=\d{1}) ; result: , 4 y 5 QZJVGQ

For letters:

(?<=\d{1}).*(?=[A-Z]{1}) ; result: , 4 y 5 QZJVGQ5E


I try to change this regexs but I no have better results.


I apreciate help with this.

bye
 

javier

Новичок
Регистрация
25.08.2012
Сообщения
93
Благодарностей
0
Баллы
0
Hi,

I find one of regex that I need

\D[A-Z].*\ ; result: 0; QZ J V G Q SE
1; S Z 8

Not perfect but now I have all letters in one list item. Now I need know how break this item and have:
Q
Z
J
V
G
Q
S
E
 

Кто просматривает тему: (Всего: 1, Пользователи: 0, Гости: 1)