vote up 1 vote down star

I have a problem. I'd like to match all occurrences of \t in my text (and by \t i mean it literally it is not a tab character) but I would like to exclude a match if it is a part of \t string. How to do that?

Example

<HTML>Blah</HTML>\t
D:\\UserData\\tui

I'd like to match \t in the first line but not in second line (as it is a part of \\t).

Is this at all possible using regular expressions?

flag

4 Answers

vote up 1 vote down check
/\\t\b/

\b matches a word boundary (transition from word-like character to non-word-like, or vice versa).

link|flag
vote up 1 vote down

You have to define more precisely what you mean by "part of a string". For example, you might mean: Don't match \t if it is followed by more alphanumerics or slash. So that would become (in Perl):

  \\t(?![\w\\])
link|flag
Simply put. My regular expression is now \\t. But I don't want any matches in following text. D:\\UserData\\tui – Jagger Jan 15 at 16:37
Then your regular expression is not simply \\t. Because \\t matches in your text. Adrian's point is you need to come up with a hard and fast rule for deciding whether an occurrence of "\t" should be considered a match or not. – j_random_hacker Jan 15 at 16:40
vote up 0 vote down

You're going to need to define in exactly which cases a \t should match, and in which ones it shouldn't, before it's possible to determine a regex for it. Your current definition seems to be of the "I'll know it when I see it" variety, which is not sufficient.

link|flag
vote up 0 vote down

Another approach: Match anything but a backslash, match a backslash and match a "t" character.

/[^\\](\\t)/
link|flag

Your Answer

Get an OpenID
or

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