Regular Expression for ../

  • Thread starter Thread starter Ahmed
  • Start date Start date
A

Ahmed

I want to form a regular expression which start with an alphabit and
shoud not contain ../ any where. I couldn't figure out how to exclude
../

Please suggest. Thank you
 
Hello Ahmed,
I want to form a regular expression which start with an alphabit and
shoud not contain ../ any where. I couldn't figure out how to exclude
./

Please suggest. Thank you

^[a-z]((?!./).)*$
 
Hello Jesse,
Hello Ahmed,
I want to form a regular expression which start with an alphabit and
shoud not contain ../ any where. I couldn't figure out how to exclude
./

Please suggest. Thank you
^[a-z]((?!./).)*$


ohh make that:

^[a-z]((?!\./).)*$
 
Hello Jesse Houwing

Thank you for the great input.

Hello Ahmed,

I am writing to check the status of the issue on your side. Would you mind
letting me know the result of Jesse Houwing's suggestions? If you need
further assistance, feel free to let me know. I will be more than happy to
be of assistance.

Have a great day!

Regards,
Jialiang Ge ([email protected], remove 'online.')
Microsoft Online Community Support

=================================================
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
(e-mail address removed).

This posting is provided "AS IS" with no warranties, and confers no rights.
=================================================
 
Back
Top