Is it S[OUF]?
Just wondering
|
|
Yes. |
|||||||||
|
|
Well, you should specify begin and end with word boundaries, otherwise if someone curses:
you might get an unintentional match. So that gives us:
We might also be interested in detecting things like
At this point, things get a bit tricky, since we still want the trailing wordboundary, but only if we didn't match a dot (since \b won't match between a dot and a space, for instance). Maybe a negative lookbehind..? I'm open to assistance on this point. |
|||||
|
|
|
Yes. There are many possible ways to write it:
et.c... (Notice that ?: makes a non-matching parenthesis so that it doesn't affect the result of the match.) |
|||
|
|
|
I prefer plain old (SO|SU|SF|MSO). A regex to match 4 possible sites is overkill if you ask me anyway. |
|||||||
|
|
If you're talking regular expression, then it has to be something like
where you're given a choice among the letters in the parentheses, but at least one is to be chosen at a time. Or streamlined to:
Which, as pointed out, matches up with one character. And the S is looking to join in on that bracket orgy. Or this dupe: What's a good way to refer to all four sites? |
||||
|