Skip to search.
boxer · The Boxer Software List

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 4437 - 4466 of 4473   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4437 leeteq55 Offline Send Email Feb 3, 2012
11:46 pm
Hi all, I wonder if Boxer can handle the following case: At drupal.org, release info notes comes in the following format: (2 example lines follows) #12345...
4438 Steve Low
Steven_I_Low Offline Send Email
Feb 4, 2012
12:15 am
Use a regex wildcard: Search: ^(#[0-9]+).+: (.+)$ Replace: $1 $2 Steve ________________________________ From: leeteq55 <leeyizik@...> To:...
4439 Steve Low
Steven_I_Low Offline Send Email
Feb 4, 2012
12:20 am
One other thing I thought of, you may need to anchor the number to some other character so it gets all the numbers at the beginning: ^(#[0-9]+)[^0-9].+: (.+)$ ...
4440 leeteq55 Offline Send Email Feb 5, 2012
2:40 pm
Hi, thanks for the tips :-) When I try that in Boxer 13, both variants give me the message "not found within the search scope", both when searching from curser...
4441 Stephan Eichenlaub
stephan@... Send Email
Feb 5, 2012
3:00 pm
Hi Leeteq, the search pattern is easy: #[0-9]+.*: The tricky part is that you don't want to replace the whole search pattern but instead delete/replace only a...
4442 leeteq55 Offline Send Email Feb 5, 2012
3:06 pm
ok, yes that worked. Now I just realized that the space before each number is not tab but several spaces, so I have to search for "by" instead of the first...
4443 Stephan Eichenlaub
stephan@... Send Email
Feb 5, 2012
3:12 pm
You may want to check out the RegExp HInts in the Replace dialog. \s should work as the pattern for whitespace. Try: \s+.+: \s (whitespace) means anything that...
4444 leeteq55 Offline Send Email Feb 5, 2012
4:47 pm
Actually, I will simply replace everything from and including the first "by" on each line, to the first colon. But how do I specify that? I have never bothered...
4445 Stephan Eichenlaub
stephan@... Send Email
Feb 5, 2012
4:53 pm
<http://www.google.de/webhp?sourceid=chrome-instant&ix=hea&ie=UTF-8&ion=1#sclient=psy-ab&hl=de&site=webhp&source=hp&q=regular%20expression%20perl%20tutorial&pb...
4446 leeteq55 Offline Send Email Feb 5, 2012
4:54 pm
Hi all, I have two somewhat related questions: 1. Is there a IRC channel that also Boxer users are frequenting somewhere? (people from this group). 2. I am...
4447 David Hamel, Boxer So...
boxer99dave Offline Send Email
Feb 5, 2012
5:11 pm
leeteq55> Hi all, I have two somewhat related questions: leeteq55> 1. Is there a IRC channel that also Boxer users are frequenting leeteq55> somewhere? (people...
4448 leeteq55 Offline Send Email Feb 5, 2012
5:13 pm
thanx for the suggestions :-) I ended up with this: "( by).*(:)" (without the quotes) That worked perfectly. Leeteq...
4449 leeteq55 Offline Send Email Feb 5, 2012
5:17 pm
ok, thanks for the answer. Are there any particular threads here in this group where such discussions are going on regarding Boxer? (Should I get involved in...
4450 leeteq55 Offline Send Email Feb 14, 2012
1:17 am
Hi, is it possible with Boxer to compare 2 text files and identify differences using pairs of lines as the criteria? If only one line match, then it is...
4451 David Hamel, Boxer So...
boxer99dave Offline Send Email
Feb 14, 2012
1:24 am
leeteq55> Hi, is it possible with Boxer to compare 2 text files and leeteq55> identify differences using pairs of lines as the criteria? Yes, I do this a lot...
4452 soxee707 Offline Send Email Feb 14, 2012
4:37 am
I am still having issues with Boxer v14 and word wrap. Pasting a block of text into a current file seems to destroy the formatting of the text. The visual...
4453 leeteq55 Offline Send Email Feb 14, 2012
11:39 am
hi, thanks for the quick answer. Yes, I know about the tile function, but having in mind the way that for example WinMerge automatically inserts "space"...
4454 David Hamel, Boxer So...
boxer99dave Offline Send Email
Feb 15, 2012
10:26 pm
soxee707> I am still having issues with Boxer v14 and word wrap. soxee707> Pasting a block of text into a current file seems to destroy soxee707> the...
4455 David Hamel, Boxer So...
boxer99dave Offline Send Email
Feb 15, 2012
10:28 pm
leeteq55> Yes, I know about the tile function, but having in mind the way leeteq55> that for example WinMerge automatically inserts "space" between leeteq55>...
4456 John Sampson
jsampson22000 Offline Send Email
Feb 22, 2012
12:36 pm
Hello - Is there any way, when using Find-and-replace, to keep the cursor at the place where a replacement took place? It is a bugbear of mine, that so often...
4457 John M
hawk_521 Offline Send Email
Feb 22, 2012
1:07 pm
Is there a Boxer macro language guide that I can download. Am about to convert a number of custom Multi-Edit macros to work within Boxer. The syntax is quite...
4458 David Hamel
boxer99dave Offline Send Email
Feb 22, 2012
1:58 pm
See the help topics "Macro Function Reference" and "Macro Language Reference." They're quite complete. -- Sent from my Android phone with K-9 Mail. Please...
4459 Hawk521
hawk_521 Offline Send Email
Feb 22, 2012
8:07 pm
I’m stuck on a minor issue. Am creating a macro that I can invoke with a hotkey to put a comment on the end of the line containing my initials and the date....
4460 agw47@...
agw47a Offline Send Email
Feb 22, 2012
8:43 pm
This isn't exactly what you are looking for but works well for what it is. The macro accepts a string and deletes everything after that string. /// clear...
4461 Tim Spencer
tspencr Offline Send Email
Feb 22, 2012
8:46 pm
Try strcat(), that should do it.  int strcat(string str1, string str2) Concatenates 'str2' to 'str1'. Returns the length of 'str1' or -1 for error. ...
4462 Steve Low
Steven_I_Low Offline Send Email
Feb 22, 2012
9:02 pm
I see you've gotten some other help, but here's another approach. To get the date I use GetDate() which returns integers, so you have to use PutInt since Boxer...
4463 David Hamel, Boxer So...
boxer99dave Offline Send Email
Feb 22, 2012
10:36 pm
Hawk521> But I have yet to find the magical way to concatenate “// JNM “ Hawk521> with DATE(). Here's a code snippet that should do the trick: int y, m,...
4464 David Hamel, Boxer So...
boxer99dave Offline Send Email
Feb 22, 2012
10:40 pm
Hi John, John> Is there any way, when using Find-and-replace, to keep the cursor at John> the place where a replacement took place? John> It is a bugbear of...
4465 Andrew Mann
aamcnsltng Offline Send Email
Feb 22, 2012
10:55 pm
It's been a long time since I've written macros in Boxer, but conceptually couldn't you write something simple that would - save your place - do your...
4466 Hawk521
hawk_521 Offline Send Email
Feb 23, 2012
1:12 pm
Perfect. I actually ended up using sprintf(datestr, "%02d-%02d-%02d", m, d, (y-2000)); to get the format I was wanting. Thanks. I’m really enjoying...
Messages 4437 - 4466 of 4473   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help