この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
Hi All,
I have a query regarding the search in JCR:content,
1. In the AEM using QueryBuilder. When I try searching with keyword "
KalmKap®" the trademark symbols are not getting searched. Instead of that it is searching for the keyword "Kalmkap".
2. The special characters like "[", "]", "{", "}", and many..... my search is not working...
Below is my Query::
group.1_fulltext.relPath=jcr:content/@jcr:title
group.1_fulltext=[KalmKap]
group.1_fulltext.relPath=jcr:content/@jcr:title
group.1_fulltext=KalmKap®
kindly help me out on this........
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
If you want to do this only with QueryBuilder then create custom predicate
e.g.
Code:
aem63app-repo/CaseInsensitiveLikePredicate.java at master · arunpatidar02/aem63app-repo · GitHub
Query
path=/content/we-retail/us/en/products
caseinsensitive.property=jcr:content/@jcr:title
caseinsensitive.value=%portland®%
表示
返信
いいね!の合計
If you want to do this only with QueryBuilder then create custom predicate
e.g.
Code:
aem63app-repo/CaseInsensitiveLikePredicate.java at master · arunpatidar02/aem63app-repo · GitHub
Query
path=/content/we-retail/us/en/products
caseinsensitive.property=jcr:content/@jcr:title
caseinsensitive.value=%portland®%
表示
返信
いいね!の合計
Nice suggestion and a correct answer
表示
返信
いいね!の合計
Thanks Arun Patidar The above worked well... I'm able to fetch all the expected results....
Still I'm stuck at one point. How can I limit the search result in XPath, like "guessTotal" in queryBuilder.
表示
返信
いいね!の合計