Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
96 views
in Technique[技术] by (71.8m points)

python - Regex simple domain

I'm searching for regex pattern which includes specific domain name.

For example: <any symbols>google<any symbols>;

I'm start with

r'^(?:https?://)?(?:[^.]+.)? ....

How can I add domain name (google) in my regex?

Thanks for your help.

question from:https://stackoverflow.com/questions/65908738/regex-simple-domain

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Solution that I found:

(https?://(.+?.)?google.[a-zA-Z]{2,}(/[A-Za-z0-9-._~:/?#[]@!$&'()*+,;=]*)?)

regex test


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

Just Browsing Browsing

[5] html - How to create even cell spacing within a

2.1m questions

2.1m answers

60 comments

57.0k users

...