Replace In files based on a condition
-
@Eko-palypse I am unsure what you mean in step 2 by “Using also” can you please elaborate
Regards
-
Don’t be confused by my new name - verification for my account via google isn’t possible at the moment
so I had to register an account at github. phew …What I meant is,
You start a npp session without any documents loaded or use an
existing npp session and close all documents.Then use the standard find in files dialog and search for the condition
As a result of this search you should get a new find result windows.Within the new result window you can right-click and use Open All.
Now you should have all files open which do have the condition in it.Last step would be using the normal find/replace dialog and define
your find and replace arguments and use the button Replace All in All Opened DocumentsThis should result in what you want to have.
-
did the google login symbol disappear as an option when you tried to login again, or was there a problem after clicking on the google g icon ?
if the google login just disappeared as an option: make sure you are logged in at google.com, logoff your git account at this community, disable any adblocker or js-blocker and reload the community login page.
-
no, the button is still there.
When I tried to log in, I was allowed to
enter the name and the password, after that I was
asked what my cell phone number was, since I could not become verified.
As I couldn’t provide the first possibility nor the second
for my account verification, because initially not specified at all,
I get now with every attempt the hint that google could not verify me.I even get this as confirmation in my gmail inbox,
where I can log in without any problems.
As a hint I get that someone tried to log on from another computer,
right around the time I’m tried to log on here.Strange…
-
if you are able to open for example gmail in your browser, go to https://myaccount.google.com/security and change or set your verification methods.
then retry login and verification.As a hint I get that someone tried to log on from another computer,
right around the time I’m tried to log on here.you will get that, if you entered anything wrong at the verification.
unfortunately google does not provide you with an ip address and/or physical location of the attempted login (like apple does 😉 ), so it’s recommended to change your password as well, as long as you aren’t sure that it was you. -
oh google is giving me my ip and even my city - very accurate but within
the security verification I do get the same issue - I should provide my
mobile or my landline telephone number or provide my postal address.But I do not like to provide this info - google knows already too much about me.
I guess I stay with github account.Would you mind giving me my second reputation point, please … pleeeease?
-
@Meta-Chuh
THANK YOU :-D -
Hi, @graham-white, and All,
I did receive your
Prg_99.xml
file and I’ve begun to study it. It seems very well structured and, seemingly, the tag<TaskType val="."/>
is always followed, further on, with the<LockingStrategy val="."/>
tag, and are both located inside a<Task MainProgram="N">..... </Task>
blockYou said, in your mail, that if you find a
<TaskType val="O"/>
tag, followed, in a same<Task ....</Task>
block, with a<LockingStrategy val="M"/>
tag , then you need to change it into<LockingStrategy val="O"/>
So, a possible regex S/R would be :
SEARCH
(?s-i)^\h+<TaskType val="O"/>.+?<LockingStrategy val="\KM(?="/>)
REPLACE
O
Remarks :
-
Of course, don’t forget to select the
Regular expression
search mode -
You may test it, finding all the
M
letters which must be changed toO
, in the<LockingStrategy.../>
tag -
When replacing, just click on the
Replace All
button, exclusively. Do not use theReplace
button !
Notes :
-
The
(?s)
in-line modifier means that any dot will match any character ( standard or EOL ones ) -
The
(?-i)
in-line modifier means that the search is processed in a non-insensitive way -
Then, the
^\h*
looks for any non-null range of horizontal blank characters -
The parts
<TaskType val="O"/>
and<LockingStrategy val="
searches for these literal expressions -
And the
.+?
represents the multi-lines area of characters, between the<TaskType.../>
tag and theLockingStrategy.../>
tag -
Now, the
\K
syntax cancel the previous search and start a new search process -
The
M
part obviously matches the letter to be changed -
But, only if followed with the string
"/>
, due to the positive look-ahead structure,(?="/>)
Hope this helps !
Best Regards,
guy038
P.S. :
My regex will find any
M
letter, in any<LockingStrategy.../>
tag, which follows a<TaskType val="O"/>
tagSo,
11
occurrences, in lines2743
,10775
,13868
,16334
,16705
,17232
,17951
,18446
,20815
,21407
and21791
The layout of these tags is ;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 15: <Task MainProgram="N"> Line 41: <TaskType val="O"/> Line 524: <LockingStrategy val="O"/> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 1980: <Task MainProgram="N"> Line 1990: <TaskType val="O"/> Line 2743: <LockingStrategy val="M"/> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 10667: <Task MainProgram="N"> Line 10677: <TaskType val="O"/> Line 10775: <LockingStrategy val="M"/> Line 11257: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 11258: <Task MainProgram="N"> Line 11268: <TaskType val="B"/> Line 11306: <LockingStrategy val="M"/> Line 11516: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 11517: <Task MainProgram="N"> Line 11527: <TaskType val="B"/> Line 11581: <LockingStrategy val="M"/> Line 11856: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 11857: <Task MainProgram="N"> Line 11867: <TaskType val="B"/> Line 11921: <LockingStrategy val="M"/> Line 12246: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 12247: <Task MainProgram="N"> Line 12257: <TaskType val="B"/> Line 12297: <LockingStrategy val="M"/> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 12509: <Task MainProgram="N"> Line 12519: <TaskType val="B"/> Line 12769: <LockingStrategy val="M"/> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 13272: <Task MainProgram="N"> Line 13282: <TaskType val="B"/> Line 13328: <LockingStrategy val="M"/> Line 13581: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 13582: <Task MainProgram="N"> Line 13592: <TaskType val="B"/> Line 13621: <LockingStrategy val="M"/> Line 13771: </Task> Line 13772: </Task> Line 13773: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 13774: <Task MainProgram="N"> Line 13784: <TaskType val="O"/> Line 13868: <LockingStrategy val="M"/> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 16072: <Task MainProgram="N"> Line 16082: <TaskType val="B"/> Line 16132: <LockingStrategy val="M"/> Line 16284: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 16285: <Task MainProgram="N"> Line 16295: <TaskType val="O"/> Line 16334: <LockingStrategy val="M"/> Line 16654: </Task> Line 16655: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 16656: <Task MainProgram="N"> Line 16666: <TaskType val="O"/> Line 16705: <LockingStrategy val="M"/> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 17183: <Task MainProgram="N"> Line 17193: <TaskType val="O"/> Line 17232: <LockingStrategy val="M"/> Line 17694: </Task> Line 17695: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 17696: <Task MainProgram="N"> Line 17706: <TaskType val="B"/> Line 17744: <LockingStrategy val="M"/> Line 17894: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 17895: <Task MainProgram="N"> Line 17905: <TaskType val="O"/> Line 17951: <LockingStrategy val="M"/> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 18396: <Task MainProgram="N"> Line 18406: <TaskType val="O"/> Line 18446: <LockingStrategy val="M"/> Line 18567: </Task> Line 18568: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 18569: <Task MainProgram="N"> Line 18579: <TaskType val="B"/> Line 18620: <LockingStrategy val="M"/> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 19369: <Task MainProgram="N"> Line 19379: <TaskType val="B"/> Line 19433: <LockingStrategy val="M"/> Line 20278: </Task> Line 20279: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 20280: <Task MainProgram="N"> Line 20290: <TaskType val="B"/> Line 20328: <LockingStrategy val="M"/> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 20484: <Task MainProgram="N"> Line 20494: <TaskType val="B"/> Line 20532: <LockingStrategy val="M"/> Line 20698: </Task> Line 20699: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 20700: <Task MainProgram="N"> Line 20710: <TaskType val="O"/> Line 20815: <LockingStrategy val="M"/> Line 21338: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 21339: <Task MainProgram="N"> Line 21349: <TaskType val="O"/> Line 21407: <LockingStrategy val="M"/> Line 21725: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 21726: <Task MainProgram="N"> Line 21736: <TaskType val="O"/> Line 21791: <LockingStrategy val="M"/> Line 22172: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 22173: <Task MainProgram="N"> Line 22183: <TaskType val="B"/> Line 22221: <LockingStrategy val="M"/> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 22508: <Task MainProgram="N"> Line 22518: <TaskType val="B"/> Line 22556: <LockingStrategy val="M"/> Line 22717: </Task> Line 22718: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 22719: <Task MainProgram="N"> Line 22729: <TaskType val="B"/> Line 22768: <LockingStrategy val="M"/> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 22965: <Task MainProgram="N"> Line 22975: <TaskType val="B"/> Line 23021: <LockingStrategy val="M"/> Line 23289: </Task> Line 23290: </Task> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Line 23291: </Task> Line 23292: </Task>
-
-
@guy038 Awesome thanks so much.
-
Hello @guy038 and All,
In my project there 1000’s xml files in which content needs to change from “Text” to “Requirement” based on certain criteria.Criteria:
"Where Title field is starting from “RQ …” only those Type needs to changed from “text” to “requirement”E.g.
<field id=“title”>RQ The <system> hall comply with “highly recommended” and “recommended” m…</field>
<field id=“type”>text</field> -
ello, @akshay-kapoor and All,
If the
type
attribute of thefield
tag just follows thetitle
attribute, on a next line, the text to search is the literaltext
string and the text to replace the literalrequirement
string, then the following regex S/R should work :SEARCH
(?-si)<field id="title">RQ.+</field>\R<field id="type">\Ktext
REPLACE
Requirement
Use the
Replace All
button, only ( not theReplace
one )Best Regards,
guy038
-
Hi, @akshay-kapoor and All,
Following your e-mail which contained an attached
XML
file, listed below :<?xml version="1.0" encoding="UTF-8"?> <work-item> <field id="_document" type="string">Driveline Control</field> <field id="_space" type="string">Sandbox</field> <field id="author">admin</field> <field id="created">2021-05-03 20:37:58.076 +0530</field> <field id="description" text-type="text/html">The &lt;system&gt; supplier shall comply the assigned ASIL</field> <field id="originalDcsid" text-type="text/html" type="text/html">DCSID1234<br/></field> <field id="priority">25.0</field> <field id="severity">normal</field> <field id="status">open</field> <field id="title">RQ The <system> supplier shall comply with "highly recommended" and "recommended" m...</field> <field id="type">text</field> </work-item>
It’s obvious that my regex could not work ! Indeed, after the
\R
regex notation standing for line-break character(s), it was expecting the literal string<field
. Unfortunately the line<field id="type">text</field>
contains leading space chars !IIt was not explicitly mentioned in your original post, as you just said :
E.g.
<field id=“title”>RQ The <system> hall comply with “highly recommended” and “recommended” m…</field>
<field id=“type”>text</field>
So, use the following correct regex S/R :
SEARCH
(?-si)<field id="title">RQ.+</field>\R\h*<field id="type">\Ktext
REPLACE
Requirement
Use the
Replace All
button, only ( not theReplace
one )I added the
\h*
regex notation which means any range, possibly empty, of horizontal blank chars (Tabulation
,Space
andNo-break space
characters )BR
guy038
-
@guy038 Awesome, its working.
Thank you so much. -
Hi, @akshay-kapoor and All,
I must apologize ! When I said that you didn’t specify that your text began with leading
space
ortabulation
characters, it was not very fair :-(Indeed, any coding man knows that lines of code, generally begin with blank chars and I should have considered this fact in my original search regex !
So, sorry for the need of your second post !
Enjoy Notepad++
BR
guy038