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
1
vote
1 answer

Notepad++ / UltraEdit: Search for id="xyz" and replace xyz

I want to build a test scenario and need to search in a html document for this: I want to replace id="someString" with id="" Working with Notepad++ and UltraEdid. Thanks…
Keith L.
  • 2,084
  • 11
  • 41
  • 64
1
vote
1 answer

Vim key mapping in UltraEdit

Does anybody know how to enable VIM key mapping in UltraEdit ? Default UE key mappings are for windows, emacs, etc., but not VIM. Googling for easy ways to do it or some template file yielded zero results. Thanks, Evgeni
OutputLogic
  • 386
  • 4
  • 11
1
vote
1 answer

having on the fly PERL spell checker in ultraedit (as in komodo edit)

In Komodo Edit, the tool interactively informs you of syntax errors, many of them are just a typo. For example, let's say that I have typed (in PERL): use strict; my ($name); $name1="Schuller"; In this case, there should be a red underline under…
user1134991
  • 3,003
  • 2
  • 25
  • 35
0
votes
1 answer

How can I align values to same column on UltraEdit?

I'm using ultraedit to write a text like following: key1: value1 key2 with different length: value2 key3 with other length: value3 with other length key4: guess what? value4 And I would like to have a way (probably via a Macro but not necessarily)…
mauroformigoni
  • 129
  • 1
  • 8
0
votes
1 answer

In UltraEdit for Mac, I want to replace group0(full match) with group0 plus some more

I'm using UltraEdit in Perl regex mode to do that. i.e. (cat) (dog) replaced with $0\n$1 $2 Although the $1 and $2 worked, I couldn't find a way to make $0 work. Does anyone experience this issue?
jonah_w
  • 972
  • 5
  • 11
0
votes
3 answers

PowerShell run Ultraedit Script

Is it possible to run an UltraEdit macro or script from the PowerShell? Something like following: uedit64.exe c:\temp\test.txt /s,e="c:\temp\script.js" I have nothing special. I just want to open the log file with UltraEdit and as soon the log…
Sherzad
  • 405
  • 4
  • 14
0
votes
1 answer

How to link CSS to HTML in UltraEdit?

I've just started using UltraEdit for coding in HTML and CSS on Mac. (I am new to HTML, I've done only a little of it in Notepad++ on Windows.) The problem is that I can not attach my CSS file to my HTML file, so HTML does work (it is very basic),…
kkk
  • 1
0
votes
3 answers

UltraEdit/Notepad - XML Remove nodes with empty properties

I'm currently facing an issue with a software i'm working with , this software receives from an external sofware several Xmls that we do need to process , now our issue is that those Xml files contain a lot of nodes which are totally useless and…
0
votes
1 answer

UltraEdit / Unix regular expressions. I want to replace all lines with a name + whitespace + number with a name + # + number SANTIAGO 80,00

UltraEdit / Unix regular expressions. I want to replace all lines with a name + whitespace + number with a name + # + number Example : SANTIAGO 80,00 will be replaced with SANTIAGO#80,00 and all the lines will proceed like that I can find what I…
0
votes
2 answers

regexp anything but

I have an txt file with 65K lines. and not all are correct aligned. So I need to replace the lines not ending with ;Yes or ;No with an space Tried ^{^;Yes|^;No}$
osomanden
  • 599
  • 1
  • 10
  • 26
0
votes
2 answers

ultraedit find quote and replace

I have a row that looks like this: 'ABCD','ABKCKD','ADFL','3','43 In UltraEdit, I am trying to find '3',' and replace that as 3, I tried to find as ['][\d]+['][,]['] and found '3',' However, when I tried to replace it as [\d]+[,], it doesn't…
0
votes
1 answer

Repeated keywords to use to format/ convert structure EDI/BAYPLIE files

Is it possible or allowed to format the EDIFACT / BAYPLIE file when there are same repeated keywords eg ? *(RFF + BM: 1'EQD + CN +) opening that in editors (Notepad++ or UltraEdit) and convert /format structure each separate new lines? Sample…
0
votes
2 answers

How to copy code with numbers using UltraEdit?

When quickly sharing code with team members, it would be nice to paste code with line numbers into an email/document. Does anyone know how to do this with UltraEdit? Current problem: Selected code below 1 PRINT 'WHAT IS YOUR NAME?' 2 INPUT…
0
votes
2 answers

How to extract lines from a text file, where a string appears several times?

I have a text file with several lines. In every line there appears a certain string either once or several times. I want to extract all lines where the string appears more than once and write these lines to a separate text file. My attempt would go…
Zappi
  • 13
  • 5
0
votes
1 answer

The value Address of Entry Point different in PE Explorer and UltraEdit

I wrote a basic helloworld.exe with C with the simple line printf("helloworld!\n"); Then I used UltraEdit to view the bytes of the EXE file and used also PE Explorer to see the header values. When it comes to Address of Entry Point, PE Explorer…
BobHU
  • 402
  • 5
  • 18