Search found 18 matches

by jakejake
13 Oct 2017, 15:52
Forum: Scripts and Functions (v1)
Topic: File Type Save-As-GUI - Program Specific
Replies: 0
Views: 637

File Type Save-As-GUI - Program Specific

Enter a comma separated value with window title, filetype, and key to focus on it. Pressing the hotkey brings up a gui to click a filetype for that program, which opens save as window with that filetype selected. Program works on programs which default to last saved filetype, and can work with vario...
by jakejake
11 Oct 2017, 15:29
Forum: Ask for Help (v1)
Topic: Question using RegExReplace on text doc Topic is solved
Replies: 5
Views: 900

Re: Question using RegExReplace on text doc Topic is solved

thanks teadrinker, that is way simpler!
by jakejake
04 Oct 2017, 12:31
Forum: Ask for Help (v1)
Topic: "working" regex only matches first line in AHK
Replies: 2
Views: 807

Re: "working" regex only matches first line in AHK

woow so complicated.... Try this ,the cleaning out of tabs , spaces make it slighty more complex : text= ( >> https://sharefile.com/Authentication/Login don't select me https://fox1.functionfox.com/timefox/main.asp <<SECTION>> behance.net http://www.twitter.com http://theoldreader.com http://www.re...
by jakejake
03 Oct 2017, 17:34
Forum: Ask for Help (v1)
Topic: "working" regex only matches first line in AHK
Replies: 2
Views: 807

"working" regex only matches first line in AHK

I thought I had a regex expression for what I needed to match, but there seems to be a discrepancy between the online regex tester and my ahk script. I don't know enough about regex to understand the different settings between the two tools or what to even search for. I have an expression that gets ...
by jakejake
02 Oct 2017, 12:42
Forum: Ask for Help (v1)
Topic: Question using RegExReplace on text doc Topic is solved
Replies: 5
Views: 900

Re: Question using RegExReplace on text doc Topic is solved

I was able to get the code working with line numbers like this, thanks again. Text = ( <<One>> \\WDFILES\Public C:\Users\Staff\Downloads https://www.yahoo.com/ <<Two_+->> C:\Program Files C:\SOLIDWORKS Data (2) <<Three_+>> \\WDFILES\Public C:\Users\Staff\Downloads https://www.yahoo.com/ <<Four>> ) M...
by jakejake
02 Oct 2017, 11:40
Forum: Ask for Help (v1)
Topic: Question using RegExReplace on text doc Topic is solved
Replies: 5
Views: 900

Re: Question using RegExReplace on text doc Topic is solved

Awesome, that is just what I needed. Thank you!!!
by jakejake
02 Oct 2017, 10:19
Forum: Ask for Help (v1)
Topic: Question using RegExReplace on text doc Topic is solved
Replies: 5
Views: 900

Question using RegExReplace on text doc Topic is solved

I am reading a text file trying to get the content and line number of what is inside double brackets with an underscore inside it. I have been stuck trying to get this Regex to do what I want, and I am not sure if this is even the best way to do it. I would really appreciate some help :) I have a la...
by jakejake
21 Jun 2017, 09:57
Forum: Scripts and Functions (v1)
Topic: Popup menu for section navigation in Notepad++
Replies: 3
Views: 1425

Popup menu for section navigation in Notepad++

This code brings up any text in <<double angled brackets>> and displays it in a popup menu as buttons. Clicking takes you to the line which that text is on in the document. It uses FileRead with the path in the window title of notepad++ and populates the content of the brackets in the active file yo...
by jakejake
01 Jun 2017, 14:56
Forum: Ask for Help (v1)
Topic: Regex to replace outside of double angle brackets Topic is solved
Replies: 7
Views: 1302

Re: Regex to replace outside of double angle brackets Topic is solved

Ah, your suggestions have fixed the problem.
Thank you both for the help!
by jakejake
01 Jun 2017, 13:08
Forum: Ask for Help (v1)
Topic: Regex to replace outside of double angle brackets Topic is solved
Replies: 7
Views: 1302

Re: Regex to replace outside of double angle brackets Topic is solved

Try this. Content= ( <<section 1>> some text > more text more > text <more text> <<section 2>> ) MsgBox, % RegExReplace(Content, ".*?<<([^>]*)>>.*?", "$1") Your first example was more along the lines of what I want to do. The only other thing is anything after the <<section 2>> in the code is inclu...
by jakejake
01 Jun 2017, 12:47
Forum: Ask for Help (v1)
Topic: Regex to replace outside of double angle brackets Topic is solved
Replies: 7
Views: 1302

Re: Regex to replace outside of double angle brackets Topic is solved

That works perfectly Capn Odin, Thanks!

I had no idea about that $1 thing, very helpful
by jakejake
01 Jun 2017, 12:21
Forum: Ask for Help (v1)
Topic: Regex to replace outside of double angle brackets Topic is solved
Replies: 7
Views: 1302

Regex to replace outside of double angle brackets Topic is solved

I have looked all over for something to do this, but I am not good at coding and struggling with Regex expressions. This is my code currently, I can only seem to target what is outside of the single angle brackets. I am trying to target everything outside double angle brackets while not being affect...
by jakejake
26 May 2017, 10:14
Forum: Scripts and Functions (v1)
Topic: Simple hotkey to move active line up and down
Replies: 0
Views: 1347

Simple hotkey to move active line up and down

Just 2 hotkeys to move the line where the cursor is up and down using Ctrl and the arrow keys. Works with indented lines as well. There's not much to it, but I found it incredibly handy for managing some collected lists I have made in notepad. You might find it useful as well. ^Up::Send {HOME 2}+{EN...
by jakejake
12 Feb 2017, 16:52
Forum: Ask for Help (v1)
Topic: Improving the Speed of CSV Script that Creates RGB values
Replies: 7
Views: 1408

Re: Improving the Speed of CSV Script that Creates RGB values

Your right 4GForce, good call. Thanks for your help!
by jakejake
12 Feb 2017, 15:47
Forum: Ask for Help (v1)
Topic: Improving the Speed of CSV Script that Creates RGB values
Replies: 7
Views: 1408

Re: Improving the Speed of CSV Script that Creates RGB values

aaaahhhhyyeeeeaaaa!!!! Thanks for your help, you guys are geniuses I used boiler's approach for the updated code. This code does the same job in a few seconds: ItmNum = 1 IfExist RGBFormatted.csv FileDelete, RGBFormatted.csv FileRead, RGBData, RGB.csv StringReplace, RGBData,RGBData, `n,`,, All Strin...
by jakejake
12 Feb 2017, 12:45
Forum: Ask for Help (v1)
Topic: Improving the Speed of CSV Script that Creates RGB values
Replies: 7
Views: 1408

Improving the Speed of CSV Script that Creates RGB values

HI Guys, I made a script for a vector art project that takes a csv file with 24 bit rgb values of an image pixel data that looks like this: 15531746,15400674,15531747 And makes a new csv that looks like this: R,G,B 226,254,236 226,254,234 227,254,236 I have pretty basic AHK knowledge and managed to ...

Go to advanced search