Hi all,
I'm a new user of UltraEdit, after years with Notepad++. Now exploring the power of macros and scripts here. I've searched in the forum and found some similar but not exact topics, so I'm wondering if someone can support me.
I'd like to do something, I think, simple. Supposing to have some code like
I'd desire to select and copy this part of code and replicate it, increasing the counter. Basically I'd like to have a "Paste" command which manipulates the code before pasting by increasing numbers.
Expected "Paste Special" result would be so:
Is it something achievable with a macro or script?
I was beginning to study CountUp macro by Mofi but I'm still a little bit newbie and it is not so easy.
Thanks in advance,
Regards, M
I'm a new user of UltraEdit, after years with Notepad++. Now exploring the power of macros and scripts here. I've searched in the forum and found some similar but not exact topics, so I'm wondering if someone can support me.
I'd like to do something, I think, simple. Supposing to have some code like
Code: Select all
<div class="form-group">
<label class="control-label" for="input-field3"><?php echo $entry_field3; ?></label>
<div>[size=50]<input type="text" name="field3" value="<?php echo $field3; ?>" id="input-field3" class="form-control" />[/size][size=50]</div>[/size]
</div>
Expected "Paste Special" result would be so:
Code: Select all
<div class="form-group">
<label class="control-label" for="input-field4"><?php echo $entry_field4; ?></label>
<div><input type="text" name="field4" value="<?php echo $field4; ?>" id="input-field4" class="form-control" /></div>
</div>
I was beginning to study CountUp macro by Mofi but I'm still a little bit newbie and it is not so easy.
Thanks in advance,
Regards, M