Search found 10 matches
- Mon Jul 30, 2007 12:53 pm
- Forum: General
- Topic: Find values not matching a pattern
- Replies: 5
- Views: 1002
- Fri Feb 23, 2007 10:45 am
- Forum: HOW-TOs
- Topic: Installing Textpad on Ubuntu
- Replies: 4
- Views: 12090
- Fri Feb 16, 2007 8:30 am
- Forum: HOW-TOs
- Topic: Installing Textpad on Ubuntu
- Replies: 4
- Views: 12090
Wouldn't it be better to just change/add the additional lines? Some users may have altered their sources.list before. (Me, for example)Twigg wrote:Replace the entire thing with this, then save and close gedit.Code: Select all
gksudo gedit /etc/apt/sources.list
- Wed Jan 31, 2007 11:35 am
- Forum: General
- Topic: Simple Regex is beating me.
- Replies: 6
- Views: 1153
Try this: Search for ^([0-9]+,[^,]*), ? Replace with \1\n Click "Find Next" repeatedly until you are done (Unfortunately I did not find a better way to do this) EDIT: I just DID find a better way ;) Just search for ([0-9]+,[^,]*), ? (there is a whitespace before the "?", but be sure not to copy the ...
- Tue Jan 23, 2007 12:43 pm
- Forum: General
- Topic: Delete alternate rows
- Replies: 6
- Views: 714
- Fri Jan 05, 2007 12:36 pm
- Forum: General
- Topic: Syntax definition file for .htaccess?
- Replies: 8
- Views: 1041
I have .htaccess files that I have FTPed from websites, but I can't rename a file to .htaccess in Windoze - it simply won't allow me. It should work if you use the commandline. (Start->run->"cmd") Just type "ren [filename].[extension] .htaccess". Notepad can save files as .htaccess, too. By the way ...
- Wed Jan 03, 2007 8:39 am
- Forum: Tips
- Topic: Macro for html, xml, etc. any file with <markup></m
- Replies: 4
- Views: 9298
Re: Slight change to account for nested elements
I didn't think of that, thank yoursperberg wrote:So I've modified BenjaminB's improved version to anticipate there being text -- and specifically a set of paired angle brackets -- following the characters being entered in the macro. Otherwise the [Ctrl]+[Shift]+[M] won't always be selecting what was intended.
- Tue Jan 02, 2007 2:54 pm
- Forum: General
- Topic: Regex to match compilation error displayed in several lines
- Replies: 1
- Views: 348
- Tue Jan 02, 2007 1:53 pm
- Forum: Tips
- Topic: Macro for html, xml, etc. any file with <markup></m
- Replies: 4
- Views: 9298
- Tue Sep 12, 2006 3:28 pm
- Forum: Java
- Topic: class or interface error
- Replies: 2
- Views: 1223
Re: class or interface error
(...) layout.getDescent(); //getWidth() - xMessageWidth float xLeft = 0.5F * (getWidth() - xMessageWidth); float yTop = 0.5F * (getHeight() - yMessageHeight); float yBase = yTop + layout.getAscent(); g2.drawString(message, xLeft, yBase); } } There are too many brackets. The last "}" closes your ...