and please note that "word character"always matches the ASCII characters [A-Za-z0-9_]. in your example, before BSL01 is a 7, a word character, and followed by another word character B, which is not
qualified as
word boundary before B according
rule #3. Tks & b.rgds -- Chris 发件人:
吴昊
I think the problem
is \b “There are three different positions that qualify as word boundaries: Before the first character in the string, if the first character is a word character. After the last character in the string, if the last character is a word character. Between two characters in the string, where one is a word character and the other is not a word character.” Tks & b.rgds -- Chris 发件人: Meedendorp, Bert [mailto:Bert.Meedendorp@xxxxxxxxxxx]
Hello, I'm using apache webserver for implementing virtual hosts. I want support on using RedirectMatch in combination with regular expressions. I want to redirect an incoming url with specific information to redirect to a local file. I'm trying the next line: RedirectMatch /sap/opu/odata/sap/ZVPOSTREAD_SRV/AktepostSet(.*(\bBSL01\b).*)
http://10.103.140.62/BSL01_X_1197.json ( This gives no match !? ) The incoming url looks like: and I want to check on the word BSL01 With kind regards, Bert
|