I have a fact table that stores a few facts with parentheses () in the object.
table: ~service_pack_fixes(^qualifiedVersion ^fix)
createfact(^qualifiedVersion fix ^fix)
DATA:
1.1 This_looks_ok.
1.1 “This_has_parentheses_around_it(start_and_end_of_line).”
When I go to print out the facts, I get quote marks around the output:
Ava: Here are the fixes:
“This has parentheses around it(start and end of line).”
This looks ok.
I have tried a few different things. I removed the quotes in he Data table, but then the fact ends at the (. I also had to remove the period at the end to get it to process the data table.
Ava: Here are the fixes:
This has parentheses around it
This looks ok.
Here is the test I’m using:
?: PACK_TEST (What fixes) Here are the fixes: \n
query(direct_sv 1.1 fix ?)
_9 = length(@0)
loop (_9) {
first(@0object) \n
}
table: ~service_pack_fixes(^qualifiedVersion ^fix)
createfact(^qualifiedVersion fix ^fix)
DATA:
1.1 This_looks_ok.
1.1 “This_has_parentheses_around_it(start_and_end_of_line).”