Great Work, never find this kind of explanation video anywhere else. Thanks for the video. If Possible could you do with some real-time scenario in simple projects of complete Regex.
Tilll now, I don't really understand the reason for complicate regex codes as you could go with easy string manipulation for the input. For example with replacing and trimming. Would also make sense from a "quality at source" perspective.
try this: phone_number = "123-456-7890" pattern = r'^\d{3}-\d{3}-\d{4}$' if re.match(pattern, phone_number): print("Phone number is valid.") else: print("Phone number is not valid.") In this example, the output will be "Phone number is valid" because the provided phone number matches the specified format.
The way you explain is superb.... Thanks a lot...!!!
The way you explain. I get back into my school days you are such a good teacher 👍
Thank you
Thanks for providing the amazing and useful content on youtube.
Thank you Imran
Great Work, never find this kind of explanation video anywhere else.
Thanks for the video.
If Possible could you do with some real-time scenario in simple projects of complete Regex.
Superb explanation. Thank you for this tutorial :)
Nice explaination
Great content as always! Thanks Rakesh.
Do you have any courses on UDEMY?
Thank you not yet on Udemy
Thank you very much!
You are welcome Gleb
Tilll now, I don't really understand the reason for complicate regex codes as you could go with easy string manipulation for the input.
For example with replacing and trimming.
Would also make sense from a "quality at source" perspective.
Hiw to check multiple country phone number not only india.
Any regex is there
Sirplease upload some videos of testing rpa uipath
Sure will try to create content Kunal
I noticed it says javascript, does this work for python as well? I feel like it does, just want to be sure :)
Is it possible to check length using regx
because your code is not detecting the length,
try this:
phone_number = "123-456-7890"
pattern = r'^\d{3}-\d{3}-\d{4}$'
if re.match(pattern, phone_number):
print("Phone number is valid.")
else:
print("Phone number is not valid.")
In this example, the output will be "Phone number is valid" because the provided phone number matches the specified format.
Thank you
Thanks
Welcome
Can you please make a tutorial video on how to create custom namespace ?
Sure, took a note will do
how to do without /d
why is "?" sign for
" ? " is for Optional