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.

Checking data with targeting some sentence in when condition using xslt -1.0

example sentence : END OF SERVICE FOR THIS DAY ----($branchPay)

using when condition if i check contains($branchPay,'END OF SERVICE') i will hard code as END

if suppose sentence somes with out spaces : END OFSERVICE FOR THIS DAY --- ($branchPay)

then hard code as END is not working , at such cases

share|improve this question

1 Answer

up vote 1 down vote accepted

You can remove spaces from $branchPay and check if it contains ENDOFSERVICE, i.e.:

contains(translate($branchPay, ' ', ''), 'ENDOFSERVICE')
share|improve this answer
simple and best, thank you – shannu Feb 16 '12 at 14:13
@shannu, Welcome. – Kirill Polishchuk Feb 16 '12 at 14:13

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.