Questions tagged [ultraedit]

UltraEdit is a long-standing, popular code and text editor, with its own macro language, a powerful column-editing mode, custom environments, tag lists, and templates.

UltraEdit is a long-standing, popular code and text editor, with its own macro language, a powerful column-editing mode, custom environments, tag lists, and templates.

The editor has a powerful trans-file Regular Expression search and replace feature, a "projects" feature for grouping related files, and integration with third-party tools that you can add to the environment.

Version 17 brings enhanced file explorer views, tighter integration with the sister application UltraCompare, customized tabs, and search expression highlighting.

See http://www.ultraedit.com/products/ultraedit/ultraedit_features.html for a complete features list.

106 questions
0
votes
2 answers

UltraEdit v. 12 will not open utf8 file as utf8

Even if auto detection of utf8 files is ON and you instruct the editor to open the file as utf8 in the Open dialog, UtraEdit will open the file as ASCII.
GoTo
  • 5,966
  • 2
  • 28
  • 31
0
votes
2 answers

Customize AutoHotkey Syntax Highlighting for UltraEdit?

I am using UltraEdit for writing/editing my AutoHotkey scripts. To enjoy of syntax highlighting for AutoHotkey scripts in UltraEdit I have installed "Run this to install syntax highlighting for UltraEdit.ahk" which comes together with AutoHotkey…
David
  • 299
  • 2
  • 14
0
votes
2 answers

Unwarping Records In Notepad++/UltraEdit

I work with big data, especially text files. These records have fixed number of columns (19 col) . If a record warps it becomes incomplete and the spilled fields form an incomplete new record as shown below. I need to un-warp the records so that…
0
votes
1 answer

Replace all `n*` by `n` instances of data that follows `*`

The Eclipse reservoir simulator takes ASCII data files as input. They have a way to compress saved data, so when inputting their saved data, they have to expand it like this: 4*0 4*1 0 3*1 5*0 1 0 2*1 10*.2 Expanded to 0 0 0 0 1 1 1 1 0 1 1 1 0 0 0…
Frenzy Li
  • 156
  • 3
  • 14
0
votes
1 answer

How to add own "double click" plugin to Ultraedit

I want to add own "double click" plugin to Ultraedit editor which will on double click can show Hello window and a OK button. Thanks in Advance..!
0
votes
2 answers

Find a blank row from thousands of rows

I have around 2 million of rows need to find all the empty rows. AKRAM AHMED SSYED Aakram ahmed (need to find this empty row) james hetfield metallica
akram
  • 69
  • 2
  • 3
  • 7
0
votes
1 answer

insert numerical sequence in large text file

I need to create a file in this format : item0000001 item0000002 item0000003 item0000004 item0000005 I was doing this with UltraEdit which has column mode including insert number ( start + increment including leading zeros ). Unfortunately,…
BaltoStar
  • 8,165
  • 17
  • 59
  • 91
0
votes
2 answers

Replace line of text Notepad++ or UltraEdit

Real quick question here that i cant work out. I have a bunch of text files across many directories. Within these dirs are text files named init.txt In these many text files, are lots of lines starting with Effective = What i need to do is replace…
0
votes
2 answers

How do I pad out a string with leading blanks?

I need to test the length of string $A in an UltraEdit script (JavaScript), and then pad it out with leading blanks if it is less than x (say: 30). There's the following suggesting to be found on Stack Overflow, but it doesn't seem to work in an…
fvg
  • 11
  • 2
0
votes
1 answer

How ultra Editor Updation works?

I'm having an Editor called Ultra Editor. In this editor i have created a file called "test.txt" with the contents of " This is Test Text ". I didn't close the ultra Editor Page. Now I opened this test.txt with the notepad Editor and changed the…
Smith Dwayne
  • 2,675
  • 8
  • 46
  • 75
-1
votes
3 answers

Using RegEx select line based on positive criteria but exclude certain lines based on negative

I apologize if there is an answer for this somewhere, but my search skills have failed me if there is. I'm using UltraEdit and there are lines I need to remove from some JSON schemas to make comparing them easier. So given the…
-1
votes
4 answers

Multi-Line Regular Expression

I'm trying to match out of this text: Continue

Caveatrob
  • 12,667
  • 32
  • 107
  • 187
-1
votes
1 answer

Why does searching for .* not work in UltraEdit?

In UltraEdit I enabled UNIX-style regular expressions, but finding .* does not work; only .+ will find something. Why, and how can I make it work? I should add that I am working with UltraEdit 11.10b. Is there a known bug or something?
kutschkem
  • 7,826
  • 3
  • 21
  • 56
-2
votes
1 answer

How to remove unknown line break (special character) in text file?

I have a text file which shows a Line Break in UltraEdit if we replace a special character in text file manually it works fine. Unknown Line Break. I have to change it manually and then process the files. Please let me know some way how to remove…
-2
votes
2 answers

Regex replacement issue: using group

I need to replace hundreds of if (ereg("avion","$keyw")) by if (preg_match("@avion@","$keyw")) { I tried this: 1st : ereg\("(.*)" 2nd : preg_match\("@$1@" But it replaces the first group by '$1'... Any idea please?
user2670167
  • 77
  • 5
  • 17