# No results returned on search with words like 'G01S 5/45'

**URL:** https://discourse.hibernate.org/t/no-results-returned-on-search-with-words-like-g01s-5-45/11233
**Category:** Hibernate Search
**Created:** [March 18, 2025, 12:48pm UTC](https://discourse.hibernate.org/t/no-results-returned-on-search-with-words-like-g01s-5-45/11233 "2025-03-18T12:48:34Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Arvind\_C\_SIDHU](https://yyz1.discourse-cdn.com/flex035/user_avatar/discourse.hibernate.org/arvind_c_sidhu/32/3909_2.png) [@Arvind\_C\_SIDHU](https://discourse.hibernate.org/u/Arvind_C_SIDHU)
#### Post date: [March 18, 2025, 12:48pm UTC](https://discourse.hibernate.org/t/no-results-returned-on-search-with-words-like-g01s-5-45/11233/1 "2025-03-18T12:48:34Z")

</div>

in database we have G01S 5/45 . its stored in hibernate search 7.1.1 while indexing.But when we are searching no results are returned. please help on this.

below is field in entity class:

@FullTextField(name = “symbol”, projectable = Projectable.NO, analyzer = “customanalyzer”)  
@Column(name=“human\_format”, updatable=false)  
private String humanFormat;

please provide some suggestion on this?

---

<div class="post-metadata">

### Author: ![mbekhta](https://yyz1.discourse-cdn.com/flex035/user_avatar/discourse.hibernate.org/mbekhta/32/2044_2.png) [@mbekhta](https://discourse.hibernate.org/u/mbekhta)
#### Post date: [March 18, 2025, 1:02pm UTC](https://discourse.hibernate.org/t/no-results-returned-on-search-with-words-like-g01s-5-45/11233/2 "2025-03-18T13:02:16Z")

</div>

Hey @Arvind_C_SIDHU

It’s hard to tell based on the information you’ve provided so far. In general, I would look into the analyzer, what tokens it produces, and what search queries are executed.

If you’d want to get a more precise answer, try creating a test based on the template: [hibernate-test-case-templates/search/hibernate-search-7 at main · hibernate/hibernate-test-case-templates · GitHub](https://github.com/hibernate/hibernate-test-case-templates/tree/main/search/hibernate-search-7) showcasing the problem you are describing.
