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.

Hey Guys is it possible to use an Regex with typoscript??

I exactly need it at the baseURL.

f.e. baseURL = http://example.com/ remove last slash (http://example.com)

Thanks in advance!!

share|improve this question

1 Answer

You could do it with stdWrap.substring if config.baseURL has stdWrap. But it has not. And you should not remove the last slash at config.baseURL.

If you have stdWrap, you can use substring

  10 = TEXT
  10.value = http://example.com/
  10.stdWrap.substring = 0,-1

Replacement via regular expression is implementent since TYPO3 4.6 see TSref

share|improve this answer

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.