1
target fixlet name = abcdef"123"

Then how can I use the session relevance to get the record?

Name of fixlet contains "abcdef"123"" << doesn't work.

BTW DONT TRY TO EDIT ANYMORE, THIS IS NOT RELEVANT TO JAVA

IF YOU DONT KNOW WHAT IS SESSION RELEVANCE, PLEASE JUST SKIP THIS.

kimtch
  • 92
  • 7

2 Answers2

1

IBM relevance

Since you are outputting to the Web as HTML I guess you have to encode them into UTF-8.

Double quote is %22, according to Wikipedia, so try: "adcdef%22123%22"

Regexident
  • 29,441
  • 10
  • 93
  • 100
Larry
  • 2,764
  • 2
  • 25
  • 36
0

Have you tried escaping quotes with backslash?

Francisco Zarabozo
  • 3,676
  • 2
  • 28
  • 54