It is currently March 28th, 2024, 6:20 pm

How to remove <br/>

Get help with creating, editing & fixing problems with skins
Post Reply
hyewiz
Posts: 13
Joined: November 15th, 2012, 8:11 pm

How to remove <br/>

Post by hyewiz »

How do you remove <br/><br/> from the string
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: How to remove <br/>

Post by balala »

hyewiz wrote:How do you remove <br/><br/> from the string
What string? I suppose you're talking about a string, which you got with a WebParser plugin measure, right?
And are you sure you have to remove the mentioned string (<br/><br/>)? Because I'm assuming, better you should remove the <br> and the </br> from something like: <br>SOME STRING HERE</br>.
If so, add to the plugin measure which returns that string the following two options:

Code: Select all

RegExpSubstitute=1
Substitute="<br>(.*)</br>":"\1"
Can you identify which measure have to work with?
Post Reply