Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been messing with this for while now and I hope you guys can help. So I have a XSL variable like

<xsl:variable name="blah" select="'texttexttext texttexttexttext Note:texttexttexttext'" />

What I'm trying to do is first search for "Note:" in $blah. If it is found, add a line break before it like &#xD; . So the output will be like

blah-> "'texttexttext texttexttexttext &#xD;Note:texttexttexttext'"

I'm able to search for the term using the usual contains function like:

<xsl:if test="(contains($blah,'Note:'))">true</xsl:if>

but I'm confused on getting replace/insert of line break

share|improve this question
XSLT 1.0 or 2.0 ? – FailedDev Aug 3 '12 at 23:42
I'm using XSLT 2.0 – Vinit Aug 3 '12 at 23:46

1 Answer

up vote 1 down vote accepted

XSLT 2.0 comes with some nice regex functions.

By using the replace function as here :

replace($blah, "(.*)(Note:.*)", "$1&amp;#xD;$2")

You shall get the desired result. So basically, I am catching all before and after Note: and I am just putting your line-break in between at the result.

share|improve this answer
Works like a charm. Thank you so much!!! – Vinit Aug 4 '12 at 0:01
@Vinit No problem :) – FailedDev Aug 4 '12 at 0:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.