No, this tool is specifically to match and replace strings within post content only and does not effect titles. You would more than likely need to run queryies against the xf_thread table for the titles.Hi,
i have moved from vB4 to XF and problems with links with german umlauts / percents:
old: http://de.wikipedia.org/wiki/Brevet_(Fahrrad)
new: http://de.wikipedia.org/wiki/Brevet_%28Fahrrad%29
old: http://www.pedelecforum.de/forum/showthread.php?1560-Chat-auch-für-Pedelec
new: http://www.pedelecforum.de/forum/showthread.php?1560-Chat-auch-f%FCr-Pedelec
old: http://www.novosport.de/?Produkte:Sitze_und_Polster:-_für_Kurzliegeräder
new: http://www.novosport.de/?Produkte:Sitze_%26amp%3B_Polster:Sitze_f%FCr_Kurzlieger%E4der
Can i correct this with that tool?
Thanks.
How can I find all posts that start with the quote tag and end with closing quote tag?
Some of my members continually click the Reply button below a message and then they go to the quick editor and click Post Reply before writing their reply.
So I'd like to find all posts with the following content... So I guess a RegExp for [quote and the ending /quote] and what's important: only find posts that have nothing after the closing /quote] tag...
Code:[quote="MemberName, post: 20734, member: 2014"]Content...[/quote]
thanks so much!
Having no clue what you want to do with it I will just provide you an expression to play with and figure out what you would like to do with it, untested so use in a test environment and preview before saving things.
This should match posts with only quotes that are not preceded or followed by anything.
#(?<![^.])\[quote="[^"]+"][^\[]+\[/quote](?![^.])#siu
Last edited:

