What does S stand for?
Rank Abbr. | Meaning |
---|---|
S | As |
S | Sex |
S | Save (baseball) |
S | Safety (football) |
"/s" is suppose to imply sarcasm. ... It means that whatever was said before it was sarcasm. It's kind of nice to have; all too often have I misinterpreted or been misinterpreted.
</s> is actually used in HTML coding and not for sarcasm. These are tags that are used to let the browser strike through a certain piece of text, indicating that was written was no longer correct. For instance, if someone had one written on their blog: I support the so and so community.
'(s)' indicates that there is a possibility of a plural existence. In other words, 'other(s)' means there is a possibility of more than one person, so the word should take a plural form, if such a situation occurs. –
J means "Joking".
We use 's with singular nouns. For example, "my son's toys" will be "the toys that belong to my son". We use only an apostrophe (') after plural nouns that end in -s: "my sons' toys" means that I have more than one son and these are their toys. We use 's for possession with the other plural nouns.
\s is fairly simple - it's a common shorthand in many regex flavours for "any whitespace character". This includes spaces, tabs, and newlines. *? is a little harder to explain. The * quantifier is fairly simple - it means "match this token (the character class in this case) zero or more times".
\s stands for “whitespace character”. Again, which characters this actually includes, depends on the regex flavor. ... [\s\d] matches a single character that is either whitespace or a digit. When applied to 1 + 2 = 3, the former regex matches 2 (space two), while the latter matches 1 (one).
Yet No Comments