vote up 0 vote down star

What regex can take any of the lines below as input

rtsp://server/blabla/bla RTSP/1.0
rtsp://server/blabla/bla/
rtsp://server/blabla/bla
rtsp://server/blabla/bla/streamid=65335 RTSP/1.0

and always returns:

rtsp://server/blabla/bla

In general I have an arbitrary URL which always starts with "rtsp://" and optionally ends with EOL, "/", " RTSP/1.0" or "/streamid=65335 RTSP/1.0".

I need to get the URL only i.e. without the optional trailing parts.

Thanks.

flag

None of the input urls contain "9C8CE56C490F2C87" so where are you getting that? I think you need to explain your question better. – John Isaacks Mar 11 at 16:47
Could you clarify that a little bit. What is the pattern that should be matches? Even “.*” could be used to match any of the lines. – Gumbo Mar 11 at 16:48
Please, see my edited post at the top again. – Jack Mar 11 at 17:03
2 questions-- 1) Sometimes a trailing / is significant. Is it possible you will need it? 2) streamid=65335 is part of the url in the last example. Will you need that? – Joel Coehoorn Mar 11 at 17:08
No, Joel, I don't need it. – Jack Mar 11 at 17:23
show 3 more comments

5 Answers

vote up 2 vote down check

This should capture the server name.

/rtsp:\/\/([^\/]+)/

from new requirements ( this removes trailing ):

linux ~ $ echo "rtsp://server/blabla/bla RTSP/1.0
rtsp://server/blabla/bla/
rtsp://server/blabla/bla
rtsp://server/blabla/bla/streamid=65335 RTSP/1.0
" | perl -pe 's/( RTSP\/1.0|\/|\/streamid=65335 RTSP\/1\.0)$//g'
rtsp://server/blabla/bla
rtsp://server/blabla/bla
rtsp://server/blabla/bla
rtsp://server/blabla/bla

This one captures url:

echo "rtsp://server/blabla/bla RTSP/1.0
rtsp://server/blabla/bla/
rtsp://server/blabla/bla
rtsp://server/blabla/bla/streamid=65335 RTSP/1.0
" | perl -pe 's/(.+?)(?: RTSP\/1.0|\/|\/streamid=65335 RTSP\/1\.0)$/\1/'
rtsp://server/blabla/bla
rtsp://server/blabla/bla
rtsp://server/blabla/bla
rtsp://server/blabla/bla
link|flag
I need the whole URL, not just the server. But the URL without all the trailing part. Please, see my edited post at the top again. – Jack Mar 11 at 17:01
vote up 1 vote down

well this will do exactly what you just asked for:

$pattern = '/rtsp:\/\/server\/.*/'
$replace = 'server/9C8CE56C490F2C87';

preg_replace($pattern, $replace, 'rtsp://server/blabla/bla RTSP/1.0');

If you want to get everything before the space this will work:

$pattern = '/([^ ]+).*/'

preg_replace($pattern, '$1', 'rtsp://server/blabla/bla RTSP/1.0');
link|flag
I need the whole URL. But the URL without all the trailing part. Please, see my edited post at the top again. – Jack Mar 11 at 17:02
vote up 1 vote down

Based on your new criteria, I don't think you need a regex.

EDIT: Removed Perl solution, since you're using C. Using C, do this:

str[20] = 0; // string is now NUL-terminated to 20 characters
if(!strcmp(str, "rtsp://server/blabla/bla"))
  {
    // do stuff if it matches
  }
else
  {
    // do stuff if it doesn't match
  }

Or, if you want to keep the original string:

if(!strncmp(str, "rtsp://server/blabla/bla", 20)) // only compare 20 chars
  {
    // do stuff if it matches
  }
else
  {
    // do stuff if it doesn't match
  }

You may want to do the strncmp() solution. That way, you can vary the length on a query to query basis.

link|flag
sorry but I'm using GNU C library regex functions – Jack Mar 11 at 17:24
vote up 1 vote down

You could match against:

(.*?)(\/streamid\=65335)?(\/)?( RTSP\/1.0)?(\n)?$

and read only the first group.

Depending on what language you are using it might be clearer to use string-processing. For example in Python:

for suffix in ('\n', ' RTSP/1.0', '/streamid=65335', '/'):
    if url.endswith(suffix):
        url= url[:-len(suffix)]
link|flag
I agree he shouldn't look to a regex in this case, but he's using C (or C++?) for what it's worth. – Chris Lutz Mar 11 at 17:34
vote up 0 vote down

Are you looking for something like this:

^rtsp://([^/]+)

And then replacing it by “$1/9C8CE56C490F2C87”?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.