- Posted by
- I do like the Andale Mono font for programming, but the 'regular' weighting is to thin for me, while the 'bold' is too heavy. Anyone have any suggestions? http://digg.com/programming/Dina_Programming_FontPosted in Editor Display
-   Topics
-   Views
- grymmjack
Dec 14, 2007
- Here's the search that I performed: <table(.*\p)*<\/table> And I replaced it with some multiline code (essentially a different table) Note that the opening tag (<table....) is not by itself on a line, though it DOES start the line - not sure if it has any significance. Also note that the last </tabl...Posted in Find/Replace/Regular Expressions
-   Topics
-   Views
- grymmjack
Jul 11, 2005
- I know this is a dead thread, but I thought I'd post the solution in case anyone else out there is looking. They had an error in their RegExp. (.*\p*) looks for multiple occurrences of any character, followed by multiple occurrences of newline. What you want is (.*\p)* which looks for multiple occur...Posted in Find/Replace/Regular Expressions
-   Topics
-   Views
- grymmjack
Jul 11, 2005