It is currently May 1st, 2024, 7:42 am

Mask " with substitute / </br> -Tag

Get help with creating, editing & fixing problems with skins
Xeramon
Posts: 9
Joined: August 18th, 2012, 12:12 pm

Mask " with substitute / </br> -Tag

Post by Xeramon »

Is there a way to mask the " with substitude?


Example:
</span><span class="fx38"></span><span class="fx64">
Last edited by Xeramon on August 20th, 2012, 12:25 am, edited 1 time in total.
Alex Becherer

Re: Mask " with substitute

Post by Alex Becherer »

You may substitute quote characters in Substitute= statements. This is done by using single quotes to surround the first part of the "find":"replace" pair. So Substitute='"':"" would remove all quotes from the text.

Note: Single and double quotes MUST be "mismatched" on the "find:replace" pairs when using single quotes as a delimiter, or the Substitute will fail. Example: Substitute='"':"None" will replace a quote with the word None. Substitute="None":'"' will replace the word None with a quote. However, Substitute='"':'None' will fail, as you can't use single quotes on both sides of the "find:replace" pairs. An easier to read example is Substitute='red':'blue', which will fail.

http://rainmeter.net/cms/Measures-Substitute_beta
Xeramon
Posts: 9
Joined: August 18th, 2012, 12:12 pm

Re: Mask " with substitute

Post by Xeramon »

Thank you very much, you helped me alot!
Now I got another question, is it posibile to make something like this: '</br>':'next line'?
User avatar
UnforgivenRevival
Posts: 310
Joined: June 7th, 2012, 2:25 am
Location: Philadelphia, PA

Re: Mask " with substitute / </br> -Tag

Post by UnforgivenRevival »

I believe "<br>":"#CRLF#" will work for you.
Xeramon
Posts: 9
Joined: August 18th, 2012, 12:12 pm

Re: Mask " with substitute / </br> -Tag

Post by Xeramon »

UnforgivenRevival wrote:I believe "<br>":"#CRLF#" will work for you.
Thanks, worked for me.
(I love this forum, so much support :D)