Regex for SIP and SIPS URIsMatch all occurrences of a regexA comprehensive regex for phone number validationHow to negate specific word in regex?RegEx match open tags except XHTML self-contained tagsEscape string for use in Javascript regexFind and kill a process in one line using bash and regexRegex - Does not contain certain CharactersHow to extract a substring using regexRegex Match all characters between two stringsCheck whether a string matches a regex in JS
MASS MicroSystems MO/128 Magneto-Optic Drive mystery
How should I behave to assure my friends that I am not after their money?
Is this the golf ball that Alan Shepard hit on the Moon?
Should I report a leak of confidential HR information?
Dual statement category theory
When is it ok to add filler to a story?
Confusion about multiple information Sets
Is there a short way to check uniqueness of values without using 'if' and multiple 'and's?
Was "I have the farts, again" broadcast from the Moon to the whole world?
Generate and graph the Recamán Sequence
How to determine what is the correct level of detail when modelling?
Professor Roman gives unusual math quiz ahead of
Is there any set of 2-6 notes that doesn't have a chord name?
Why is the Turkish president's surname spelt in Russian as Эрдоган, with г?
Wilcoxon signed rank test – critical value for n>50
What is the best delay to use between characters sent to the serial port
Set vertical spacing between two particular items
Find smallest index that is identical to the value in an array
Cross over of arrows in a complex diagram
Could Sauron have read Tom Bombadil's mind if Tom had held the Palantir?
How would a order of Monks that renounce their names communicate effectively?
Symbol for "not absolutely continuous" in Latex
Analog is Obtuse!
can’t run a function against EXEC
Regex for SIP and SIPS URIs
Match all occurrences of a regexA comprehensive regex for phone number validationHow to negate specific word in regex?RegEx match open tags except XHTML self-contained tagsEscape string for use in Javascript regexFind and kill a process in one line using bash and regexRegex - Does not contain certain CharactersHow to extract a substring using regexRegex Match all characters between two stringsCheck whether a string matches a regex in JS
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Sample Sip URI
sip:alice@atlanta.com
sip:alice:secretword@atlanta.com;transport=tcp
sips:alice@atlanta.com?subject=project%20x&priority=urgent
sip:+1-212-555-1212:1234@gateway.com;user=phone
sips:1212@gateway.com
sip:alice@192.0.2.4
sip:atlanta.com;method=REGISTER?to=alice%40atlanta.com
sip:alice;day=tuesday@atlanta.com
the regex I created ^(sip|sips):([^@]+)@(.+)
What I am trying to achieve is @ is optional, if @is there something before and after @ should be there, otherwise after sip: anything can be accepted
java regex regex-negation regex-group
add a comment |
Sample Sip URI
sip:alice@atlanta.com
sip:alice:secretword@atlanta.com;transport=tcp
sips:alice@atlanta.com?subject=project%20x&priority=urgent
sip:+1-212-555-1212:1234@gateway.com;user=phone
sips:1212@gateway.com
sip:alice@192.0.2.4
sip:atlanta.com;method=REGISTER?to=alice%40atlanta.com
sip:alice;day=tuesday@atlanta.com
the regex I created ^(sip|sips):([^@]+)@(.+)
What I am trying to achieve is @ is optional, if @is there something before and after @ should be there, otherwise after sip: anything can be accepted
java regex regex-negation regex-group
add a comment |
Sample Sip URI
sip:alice@atlanta.com
sip:alice:secretword@atlanta.com;transport=tcp
sips:alice@atlanta.com?subject=project%20x&priority=urgent
sip:+1-212-555-1212:1234@gateway.com;user=phone
sips:1212@gateway.com
sip:alice@192.0.2.4
sip:atlanta.com;method=REGISTER?to=alice%40atlanta.com
sip:alice;day=tuesday@atlanta.com
the regex I created ^(sip|sips):([^@]+)@(.+)
What I am trying to achieve is @ is optional, if @is there something before and after @ should be there, otherwise after sip: anything can be accepted
java regex regex-negation regex-group
Sample Sip URI
sip:alice@atlanta.com
sip:alice:secretword@atlanta.com;transport=tcp
sips:alice@atlanta.com?subject=project%20x&priority=urgent
sip:+1-212-555-1212:1234@gateway.com;user=phone
sips:1212@gateway.com
sip:alice@192.0.2.4
sip:atlanta.com;method=REGISTER?to=alice%40atlanta.com
sip:alice;day=tuesday@atlanta.com
the regex I created ^(sip|sips):([^@]+)@(.+)
What I am trying to achieve is @ is optional, if @is there something before and after @ should be there, otherwise after sip: anything can be accepted
java regex regex-negation regex-group
java regex regex-negation regex-group
asked Mar 25 at 11:38
Cork KochiCork Kochi
5061 gold badge9 silver badges25 bronze badges
5061 gold badge9 silver badges25 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You may use
^(sips?):([^@]+)(?:@(.+))?$
See the regex demo.
Details
^
- start of string(sips?)
- Group 1:sip
orsips
:
- a colon([^@]+)
- Group 2: 1 or more chars other than@
(?:@(.+))?
- an optional non-capturing group:@
- a@
char(.+)
- Group 3: any 0+ chars other than line break chars, as many as possible
$
- end of string.
NOTE: if you use the pattern with .matches()
method, ^
and $
are redundant and can be removed from the pattern as that method requires a full string match.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55336959%2fregex-for-sip-and-sips-uris%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You may use
^(sips?):([^@]+)(?:@(.+))?$
See the regex demo.
Details
^
- start of string(sips?)
- Group 1:sip
orsips
:
- a colon([^@]+)
- Group 2: 1 or more chars other than@
(?:@(.+))?
- an optional non-capturing group:@
- a@
char(.+)
- Group 3: any 0+ chars other than line break chars, as many as possible
$
- end of string.
NOTE: if you use the pattern with .matches()
method, ^
and $
are redundant and can be removed from the pattern as that method requires a full string match.
add a comment |
You may use
^(sips?):([^@]+)(?:@(.+))?$
See the regex demo.
Details
^
- start of string(sips?)
- Group 1:sip
orsips
:
- a colon([^@]+)
- Group 2: 1 or more chars other than@
(?:@(.+))?
- an optional non-capturing group:@
- a@
char(.+)
- Group 3: any 0+ chars other than line break chars, as many as possible
$
- end of string.
NOTE: if you use the pattern with .matches()
method, ^
and $
are redundant and can be removed from the pattern as that method requires a full string match.
add a comment |
You may use
^(sips?):([^@]+)(?:@(.+))?$
See the regex demo.
Details
^
- start of string(sips?)
- Group 1:sip
orsips
:
- a colon([^@]+)
- Group 2: 1 or more chars other than@
(?:@(.+))?
- an optional non-capturing group:@
- a@
char(.+)
- Group 3: any 0+ chars other than line break chars, as many as possible
$
- end of string.
NOTE: if you use the pattern with .matches()
method, ^
and $
are redundant and can be removed from the pattern as that method requires a full string match.
You may use
^(sips?):([^@]+)(?:@(.+))?$
See the regex demo.
Details
^
- start of string(sips?)
- Group 1:sip
orsips
:
- a colon([^@]+)
- Group 2: 1 or more chars other than@
(?:@(.+))?
- an optional non-capturing group:@
- a@
char(.+)
- Group 3: any 0+ chars other than line break chars, as many as possible
$
- end of string.
NOTE: if you use the pattern with .matches()
method, ^
and $
are redundant and can be removed from the pattern as that method requires a full string match.
answered Mar 25 at 11:46
Wiktor StribiżewWiktor Stribiżew
343k16 gold badges160 silver badges241 bronze badges
343k16 gold badges160 silver badges241 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55336959%2fregex-for-sip-and-sips-uris%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown