remove month,day from xml with notepad++/+ Wordpress All-import image from text to featured image ...

What's parked in Mil Moscow helicopter plant?

Implementing 3DES algorithm in Java: is my code secure?

Is it acceptable to use working hours to read general interest books?

How long after the last departure shall the airport stay open for an emergency return?

Expansion//Explosion and Siren Stormtamer

Visa-free travel to the US using refugee travel document from Spain?

Check if a string is entirely made of the same substring

How to get even lighting when using flash for group photos near wall?

Is Electric Central Heating worth it if using Solar Panels?

Book with legacy programming code on a space ship that the main character hacks to escape

What is the best way to deal with NPC-NPC combat?

What is the ongoing value of the Kanban board to the developers as opposed to management

Could moose/elk survive in the Amazon forest?

Trumpet valves, lengths, and pitch

Passing args from the bash script to the function in the script

Could Neutrino technically as side-effect, incentivize centralization of the bitcoin network?

Multiple options vs single option UI

A Paper Record is What I Hamper

Economise space with floats

How to use @AuraEnabled base class method in Lightning Component?

Why didn't the Space Shuttle bounce back into space as many times as possible so as to lose a lot of kinetic energy up there?

Does Feeblemind produce an ongoing magical effect that can be dispelled?

With indentation set to `0em`, when using a line break, there is still an indentation of a size of a space

PIC mathematical operations weird problem



remove month,day from xml with notepad++/+ Wordpress All-import image from text to featured image



Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar Manarahow to select different expressions between xml tags with a similar character with notepad++Remove all but URL-s from XML filesRemove all extra text before and after domain string per line in notepad++How to delete values from xml in NOTEPAD++Notepad++: How to remove a section of text with regexAdding some commands from e.g. WordPress to Notepad++Notepad++ remove comma from stringHow to Replace text inside tag in Notepad ++ from 2 file Xml?Notepad++ remove all lines with a specific character 2 timesHow to delete values with specific criteria from XML file in NOTEPAD++





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







-1















I need some ASAP help if someone can!



I'm trying to remove month and day from xml file, but can't find right regex with notepad++.



What I have:



<EventDay>1990-08-13</EventDay>          //custom CMS category
<EntryDay>2003.09.19 09:04:57</EntryDay> //custom CMS post publish date


What I need:



<EventDay>1990</EventDay>       //WordPress CMS new category
<EntryDay>2003.09.19</EntryDay> //WordPress CMS publish date


Can someone help me with this?



And one more problem with getting image from XML file to wordpress post featured image. Maybe someone did it with WP all import plugin? Is it possible to GET first image from text XML field?



<ID>379</ID>
<EntryDay>2018.03.04 22:35:29</EntryDay>
<EventDay>2018-03-04</EventDay>
<Title>Some Title</Title>
<ShortMsg>&lt;p&gt;&lt;img src=http://xxx/xxx/xxx/xx.jpg&quot; border=&quot;0&quot; alt=&quot;xxx&quot; width=&quot;550&quot; /&gt;&lt;/p&gt;</ShortMsg>
<Message>&lt;p&gt;&lt;img src=http://xxx/xxx/xxx/xx.jpg&quot; border=&quot;0&quot; alt=&quot;xxx&quot; width=&quot;550&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</Message>









share|improve this question







New contributor




itbox paslaugos is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • "I need some ASAP help" - this is not the right place to ask then, here people help each other for free, in their free time, without any constraints on how quickly to answer. If it's really that urgent for you, best option is to hire an expert. "I'm trying to remove month and day from xml file" - you removed hour, min and second from the second line of example, but left month and day, please clarify what exactly you need to do. Also clarify what's the date / time format you expect. "but can't find right regex with notepad++" - what you've tried? How it failed? ...

    – Máté Juhász
    13 hours ago











  • @MátéJuhász - I have wrote what I need in //comment, and how it looks like now in XML file (about dates). EventDay - Will be Wordpress category like: 1990/1991/1992/1993 (now it shows in XML like 1990-08-13 <EntryDay>2003.09.19 09:04:57</EntryDay> - Will be Wordpress post publishing date (but I wan't it to show as 2003.09.19 now full date and time.

    – itbox paslaugos
    13 hours ago




















-1















I need some ASAP help if someone can!



I'm trying to remove month and day from xml file, but can't find right regex with notepad++.



What I have:



<EventDay>1990-08-13</EventDay>          //custom CMS category
<EntryDay>2003.09.19 09:04:57</EntryDay> //custom CMS post publish date


What I need:



<EventDay>1990</EventDay>       //WordPress CMS new category
<EntryDay>2003.09.19</EntryDay> //WordPress CMS publish date


Can someone help me with this?



And one more problem with getting image from XML file to wordpress post featured image. Maybe someone did it with WP all import plugin? Is it possible to GET first image from text XML field?



<ID>379</ID>
<EntryDay>2018.03.04 22:35:29</EntryDay>
<EventDay>2018-03-04</EventDay>
<Title>Some Title</Title>
<ShortMsg>&lt;p&gt;&lt;img src=http://xxx/xxx/xxx/xx.jpg&quot; border=&quot;0&quot; alt=&quot;xxx&quot; width=&quot;550&quot; /&gt;&lt;/p&gt;</ShortMsg>
<Message>&lt;p&gt;&lt;img src=http://xxx/xxx/xxx/xx.jpg&quot; border=&quot;0&quot; alt=&quot;xxx&quot; width=&quot;550&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</Message>









share|improve this question







New contributor




itbox paslaugos is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • "I need some ASAP help" - this is not the right place to ask then, here people help each other for free, in their free time, without any constraints on how quickly to answer. If it's really that urgent for you, best option is to hire an expert. "I'm trying to remove month and day from xml file" - you removed hour, min and second from the second line of example, but left month and day, please clarify what exactly you need to do. Also clarify what's the date / time format you expect. "but can't find right regex with notepad++" - what you've tried? How it failed? ...

    – Máté Juhász
    13 hours ago











  • @MátéJuhász - I have wrote what I need in //comment, and how it looks like now in XML file (about dates). EventDay - Will be Wordpress category like: 1990/1991/1992/1993 (now it shows in XML like 1990-08-13 <EntryDay>2003.09.19 09:04:57</EntryDay> - Will be Wordpress post publishing date (but I wan't it to show as 2003.09.19 now full date and time.

    – itbox paslaugos
    13 hours ago
















-1












-1








-1


1






I need some ASAP help if someone can!



I'm trying to remove month and day from xml file, but can't find right regex with notepad++.



What I have:



<EventDay>1990-08-13</EventDay>          //custom CMS category
<EntryDay>2003.09.19 09:04:57</EntryDay> //custom CMS post publish date


What I need:



<EventDay>1990</EventDay>       //WordPress CMS new category
<EntryDay>2003.09.19</EntryDay> //WordPress CMS publish date


Can someone help me with this?



And one more problem with getting image from XML file to wordpress post featured image. Maybe someone did it with WP all import plugin? Is it possible to GET first image from text XML field?



<ID>379</ID>
<EntryDay>2018.03.04 22:35:29</EntryDay>
<EventDay>2018-03-04</EventDay>
<Title>Some Title</Title>
<ShortMsg>&lt;p&gt;&lt;img src=http://xxx/xxx/xxx/xx.jpg&quot; border=&quot;0&quot; alt=&quot;xxx&quot; width=&quot;550&quot; /&gt;&lt;/p&gt;</ShortMsg>
<Message>&lt;p&gt;&lt;img src=http://xxx/xxx/xxx/xx.jpg&quot; border=&quot;0&quot; alt=&quot;xxx&quot; width=&quot;550&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</Message>









share|improve this question







New contributor




itbox paslaugos is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I need some ASAP help if someone can!



I'm trying to remove month and day from xml file, but can't find right regex with notepad++.



What I have:



<EventDay>1990-08-13</EventDay>          //custom CMS category
<EntryDay>2003.09.19 09:04:57</EntryDay> //custom CMS post publish date


What I need:



<EventDay>1990</EventDay>       //WordPress CMS new category
<EntryDay>2003.09.19</EntryDay> //WordPress CMS publish date


Can someone help me with this?



And one more problem with getting image from XML file to wordpress post featured image. Maybe someone did it with WP all import plugin? Is it possible to GET first image from text XML field?



<ID>379</ID>
<EntryDay>2018.03.04 22:35:29</EntryDay>
<EventDay>2018-03-04</EventDay>
<Title>Some Title</Title>
<ShortMsg>&lt;p&gt;&lt;img src=http://xxx/xxx/xxx/xx.jpg&quot; border=&quot;0&quot; alt=&quot;xxx&quot; width=&quot;550&quot; /&gt;&lt;/p&gt;</ShortMsg>
<Message>&lt;p&gt;&lt;img src=http://xxx/xxx/xxx/xx.jpg&quot; border=&quot;0&quot; alt=&quot;xxx&quot; width=&quot;550&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</Message>






notepad++ regex xml wordpress






share|improve this question







New contributor




itbox paslaugos is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




itbox paslaugos is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




itbox paslaugos is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 13 hours ago









itbox paslaugositbox paslaugos

1




1




New contributor




itbox paslaugos is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





itbox paslaugos is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






itbox paslaugos is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • "I need some ASAP help" - this is not the right place to ask then, here people help each other for free, in their free time, without any constraints on how quickly to answer. If it's really that urgent for you, best option is to hire an expert. "I'm trying to remove month and day from xml file" - you removed hour, min and second from the second line of example, but left month and day, please clarify what exactly you need to do. Also clarify what's the date / time format you expect. "but can't find right regex with notepad++" - what you've tried? How it failed? ...

    – Máté Juhász
    13 hours ago











  • @MátéJuhász - I have wrote what I need in //comment, and how it looks like now in XML file (about dates). EventDay - Will be Wordpress category like: 1990/1991/1992/1993 (now it shows in XML like 1990-08-13 <EntryDay>2003.09.19 09:04:57</EntryDay> - Will be Wordpress post publishing date (but I wan't it to show as 2003.09.19 now full date and time.

    – itbox paslaugos
    13 hours ago





















  • "I need some ASAP help" - this is not the right place to ask then, here people help each other for free, in their free time, without any constraints on how quickly to answer. If it's really that urgent for you, best option is to hire an expert. "I'm trying to remove month and day from xml file" - you removed hour, min and second from the second line of example, but left month and day, please clarify what exactly you need to do. Also clarify what's the date / time format you expect. "but can't find right regex with notepad++" - what you've tried? How it failed? ...

    – Máté Juhász
    13 hours ago











  • @MátéJuhász - I have wrote what I need in //comment, and how it looks like now in XML file (about dates). EventDay - Will be Wordpress category like: 1990/1991/1992/1993 (now it shows in XML like 1990-08-13 <EntryDay>2003.09.19 09:04:57</EntryDay> - Will be Wordpress post publishing date (but I wan't it to show as 2003.09.19 now full date and time.

    – itbox paslaugos
    13 hours ago



















"I need some ASAP help" - this is not the right place to ask then, here people help each other for free, in their free time, without any constraints on how quickly to answer. If it's really that urgent for you, best option is to hire an expert. "I'm trying to remove month and day from xml file" - you removed hour, min and second from the second line of example, but left month and day, please clarify what exactly you need to do. Also clarify what's the date / time format you expect. "but can't find right regex with notepad++" - what you've tried? How it failed? ...

– Máté Juhász
13 hours ago





"I need some ASAP help" - this is not the right place to ask then, here people help each other for free, in their free time, without any constraints on how quickly to answer. If it's really that urgent for you, best option is to hire an expert. "I'm trying to remove month and day from xml file" - you removed hour, min and second from the second line of example, but left month and day, please clarify what exactly you need to do. Also clarify what's the date / time format you expect. "but can't find right regex with notepad++" - what you've tried? How it failed? ...

– Máté Juhász
13 hours ago













@MátéJuhász - I have wrote what I need in //comment, and how it looks like now in XML file (about dates). EventDay - Will be Wordpress category like: 1990/1991/1992/1993 (now it shows in XML like 1990-08-13 <EntryDay>2003.09.19 09:04:57</EntryDay> - Will be Wordpress post publishing date (but I wan't it to show as 2003.09.19 now full date and time.

– itbox paslaugos
13 hours ago







@MátéJuhász - I have wrote what I need in //comment, and how it looks like now in XML file (about dates). EventDay - Will be Wordpress category like: 1990/1991/1992/1993 (now it shows in XML like 1990-08-13 <EntryDay>2003.09.19 09:04:57</EntryDay> - Will be Wordpress post publishing date (but I wan't it to show as 2003.09.19 now full date and time.

– itbox paslaugos
13 hours ago












0






active

oldest

votes












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






itbox paslaugos is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1429036%2fremove-month-day-from-xml-with-notepad-wordpress-all-import-image-from-text%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes








itbox paslaugos is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















itbox paslaugos is a new contributor. Be nice, and check out our Code of Conduct.













itbox paslaugos is a new contributor. Be nice, and check out our Code of Conduct.












itbox paslaugos is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to Super User!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1429036%2fremove-month-day-from-xml-with-notepad-wordpress-all-import-image-from-text%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

looking for continuous Screen Capture for retroactivly reproducing errors, timeback machineRolling desktop...