Size: a a a

Regular Expressions

2020 October 19

RG

Roberto Guerrero in Regular Expressions
perfect Denis; I am testing it in my configuration
источник

RG

Roberto Guerrero in Regular Expressions
I will tell you if it works for me in the configuration in a moment
источник

RG

Roberto Guerrero in Regular Expressions
I am reviewing again
источник

DE

Denis Efremov in Regular Expressions
You should do what it asks to you
источник

DE

Denis Efremov in Regular Expressions
Define capture group
источник

H

H in Regular Expressions
Hi, any ideas how can I use regex to get all the information in the following pattern - (Aaaaaa (bbb) - ccccc)?
I'm using '\((.+?\))', but this way I catch only the information till ......aaa) and '- cccc' is not included.
источник

RG

Roberto Guerrero in Regular Expressions
Denis Efremov
You should do what it asks to you
Effectively; I'm going to apply a group and take the end
источник

RG

Roberto Guerrero in Regular Expressions
Denis Efremov
You should do what it asks to you
источник

RG

Roberto Guerrero in Regular Expressions
Denis Efremov
You should do what it asks to you
thank so much Denis
источник

H

H in Regular Expressions
H
Hi, any ideas how can I use regex to get all the information in the following pattern - (Aaaaaa (bbb) - ccccc)?
I'm using '\((.+?\))', but this way I catch only the information till ......aaa) and '- cccc' is not included.
Any ideas what I'm doing wrong?
источник

DE

Denis Efremov in Regular Expressions
H
Hi, any ideas how can I use regex to get all the information in the following pattern - (Aaaaaa (bbb) - ccccc)?
I'm using '\((.+?\))', but this way I catch only the information till ......aaa) and '- cccc' is not included.
What do you mean to get all the information?
источник

DE

Denis Efremov in Regular Expressions
Regex'es don't used for getting an information. It is about matching by a pattern
источник

DE

Denis Efremov in Regular Expressions
Or with a pattern. Sorry for my English
источник

H

H in Regular Expressions
I need to get the information that match the following pattern -
источник

H

H in Regular Expressions
....;(Flat in the west region of the city (HEN distinct) - sunny 84m);(House in the east....;)
I should get the following result - Flat in the west region of the city (HEN distinct) - sunny 84m
источник

H

H in Regular Expressions
But so far I get only - Flat in the west region of the city (HEN distinct)
источник

DE

Denis Efremov in Regular Expressions
источник
2020 October 20

J

Jegors in Regular Expressions
Подскажите регулярное выражение, что-бы разбить английский текст на слова!  "one can't 'two' 3" => "one", "can't", "two", "3".

Обратите внимание на апостроф! Цифры - это слова. Знаки препинания и любые другие символы - это разделитель.

"'little', ' words, can't" => "little", "words", "can't"
источник

J

Jegors in Regular Expressions
Язык Java для String.split()
источник

J

Jegors in Regular Expressions
Я не уверен, что у меня написано оптимально
источник