I need 2 simple reg exps that will:
- Match if a string is contained within square brackets (
[]e.g[word]) - Match if string is contained within double quotes (
""e.g"word")
|
The \[ and \] escape the special bracket characters to match their literals. The \w means "any word character", usually considered same as alphanumeric or underscore. The + means one or more of the preceding item. The " are literal characters.
And next time, you should be able to answer this yourself, by reading regular-expressions.info Update: Ok, so based on your comment, what you appear to be wanting to know is if the first character is [ and the last ] or if the first and last are both " ?
However, unless you need to do some special checking with the centre characters, simply doing:
and
Which I suspect would be faster than a regex. |
|||||||||||
|
|
Important issues that may make this hard/impossible in a regex:
Based on comments, you seem to want to match things like
|
||||
|
|
|
Are they two separate expressions? [[A-Za-z]+] \"[A-Za-z]+\" If they are in a single expression: [[\"]+[a-zA-Z]+[]\"]+ Remember that in .net you'll need to escape the double quotes " by "" |
|||
|