* StarWing on Monday, January 12, 2009 at 09:01:32 -0800 > how can i did this? i want match abcd which is not in quote. e.g: > abcd //match > "abcd" //mismatch > "\"abcd" //mismatch > "\"ab" abcd //match > > how can i did this?
[^"]abcd[^"] which of course would also match abcde, so perhaps: [^"]\<abcd\>[^"] Depends what exactly you want, really. c -- \black\trash movie _C O W B O Y_ _C A N O E_ _C O M A_ Ein deutscher Western/A German Western -->> http://www.blacktrash.org/underdogma/ccc.html -->> http://www.blacktrash.org/underdogma/ccc-en.html --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
