Hi,

The question is not clear to me, but here is a little info that I hope
will help.

"The "MarkLogic"" in your example is not a string, but you can use
different inner and outer quotes to put quotes in a string:

'The "MarkLogic Server" '

You can also use numerical character references to embed quotes in a string.

If you use double quotes in a string that goes to search:search (via
search:parse) then the quoted bit is kept together as a phrase:

search:parse ('The "MarkLogic Server" ')

gives the equivalent of

cts:and-query ((
    cts:word-query ('The'),
    cts:word-query ('MarkLogic Server')
))

- Chris
_______________________________________________
General mailing list
[email protected]
http://developer.marklogic.com/mailman/listinfo/general

Reply via email to