Hi everyone, I have an issue with single quote character (') by using String ch.ivyteam.ivy.cm.IContentManagementSystem.co(String uri, List formatObjects).
When I used this Etes-vous âgé-e-s d'au moins {0} ? in CMS, it is displayed on view as Etes-vous âgé-e-s dau moins {0} ?.
When I used this Etes-vous âgé-e-s dau moins {0} ? (without ') in CMS, it is displayed on view as Etes-vous âgé-e-s dau moins 18 ?.
Could you please help me on this? Thank you.

asked 23.08.2017 at 00:15

Bao%20Tran's gravatar image

Bao Tran
(suspended)
accept rate: 0%

edited 23.08.2017 at 00:19


Because you use {0} in your cms Java Message Format is used to format the string. Java Message Format will remove a single ' character. Instead of using a single ' character duplicate the character:

Etes-vous âgé-e-s d''au moins {0} ?

This will be displayed on the view as:

Etes-vous âgé-e-s d'au moins {0} ?

link

answered 23.08.2017 at 02:54

Reto%20Weiss's gravatar image

Reto Weiss ♦♦
4.9k202857
accept rate: 74%

Thank you very much.

(23.08.2017 at 02:59) Bao Tran Bao%20Tran's gravatar image
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×147
×26
×16

Asked: 23.08.2017 at 00:15

Seen: 1,738 times

Last updated: 23.08.2017 at 02:59