Regex Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming Languages - MoreRegex Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old May 14th, 2009, 12:38 PM
taneem taneem is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2008
Posts: 59 taneem User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 12 h 24 m 7 sec
Reputation Power: 6
Signaficance of the sign #

Hello Mates,
A very basic question. How does the sign '#' effects any RE. For example the following RE
Code:
#(alert|cmd|passthru|eval|exec|system|fopen|fsockopen|file|file_get_contents|readfile|unlink)(\s*)\(  (.*?)\)#si
. What's the signaficance of the sign '#'. If anyone can kindly help me with this, that woudl be very much appreciated. Thank you.

Reply With Quote
  #2  
Old May 14th, 2009, 02:27 PM
prometheuzz prometheuzz is offline
User 165270
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2005
Posts: 497 prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level) 
Time spent in forums: 5 Days 10 h 14 m 35 sec
Reputation Power: 936
Assuming it is a Perl, PHP or some similar regex flavour, it probably is just a delimiter.
Most of the times, the forward slash is used, but you can use other delimiters, like the hash character (#).

Reply With Quote
  #3  
Old May 15th, 2009, 03:23 AM
taneem taneem is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2008
Posts: 59 taneem User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 12 h 24 m 7 sec
Reputation Power: 6
Quote:
Originally Posted by prometheuzz
Assuming it is a Perl, PHP or some similar regex flavour, it probably is just a delimiter.
Most of the times, the forward slash is used, but you can use other delimiters, like the hash character (#).

Thank you, mate. I was using RE in PHP. Thankx.

Reply With Quote
  #4  
Old May 15th, 2009, 03:39 AM
prometheuzz prometheuzz is offline
User 165270
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2005
Posts: 497 prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level) 
Time spent in forums: 5 Days 10 h 14 m 35 sec
Reputation Power: 936
Quote:
Originally Posted by taneem
Thank you, mate. I was using RE in PHP. Thankx.


No problem.
Most of the time you see people using the forward slash:

PHP Code:
'/some-regex-here/' 


But when you want to match a forward slash in your regex, you would need to escape it, otherwise the regex engine "thinks" your regex terminates too early:

PHP Code:
'/some-regex\/here/' 


in which case many people use another delimiter so that they need not escape the slash:

PHP Code:
'#some-regex/here#' 


HTH

Reply With Quote
  #5  
Old May 15th, 2009, 04:08 AM
taneem taneem is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2008
Posts: 59 taneem User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 12 h 24 m 7 sec
Reputation Power: 6
Quote:
Originally Posted by prometheuzz
No problem.
Most of the time you see people using the forward slash:

PHP Code:
'/some-regex-here/' 


But when you want to match a forward slash in your regex, you would need to escape it, otherwise the regex engine "thinks" your regex terminates too early:

PHP Code:
'/some-regex\/here/' 


in which case many people use another delimiter so that they need not escape the slash:

PHP Code:
'#some-regex/here#' 


HTH

Got it. RE is quite a handly tool to stop hackers in terms of form input. That's why I need to learn them good. Thankx.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreRegex Programming > Signaficance of the sign #

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap