Replace whitespace from property value | Community
Skip to main content
varuns46785756
New Participant
March 21, 2017
Solved

Replace whitespace from property value

  • March 21, 2017
  • 1 reply
  • 896 views

Hi ,

I have ${properties.Title} value and I am using this value as Id to open accordion in my page.If I have Title without any space , its working fine but if I have space in Title then ID will not work because Id not taking value with space.Is there any way to remove space from Title and use as Id in silghtly.

<li class="column">
                            <a href="#" data-id="${properties.Title}">
                                <span class="widthCtrl"><img alt="Drive Up" src="${properties.serviceImage}"></span>
                                <h5>${properties.Title}</h5>
                            </a>
                            <div class="serviceDescription" id="${nav.serviceTitle}">

                                <div class="container">..</div>

......................................................

</li>

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by sandeepm744005

Best option would be to trim the value of the field in the sling model class.

1 reply

sandeepm744005
sandeepm744005Accepted solution
New Participant
March 22, 2017

Best option would be to trim the value of the field in the sling model class.