Skip to main content
1-Visitor
August 7, 2020
Solved

Like filter not working with special characters

  • August 7, 2020
  • 3 replies
  • 2331 views

Hello,

 

When i'm filtering the things using the like filter which contains special characters, it's not returning any results. I have tried using escape characters still no result.

Did anyone face this issue? How did you overcome this? 

 

var filterPattern = "Thingworx Navigate (TN)";
var params = {
inclusive: true /* BOOLEAN */,
fieldName: "Organization" /* STRING */,
t: Devices /* INFOTABLE */,
pattern: filterPattern + "*" /* STRING */,
};

var result = Resources["InfoTableFunctions"].LikeFilter(params);

 

-thanks,

Abhiram

 

Best answer by CharlesJi

Hi @abhiramk, in this case, you may try to use a double backslash "\\" to escape the special characters.

var filterPattern = "Thingworx Navigate \\(TN\\)";

 

3 replies

17-Peridot
August 11, 2020
abhiramk1-VisitorAuthor
1-Visitor
August 11, 2020

Thanks Max for your response.

As per my understanding LikeFilter is to filter infotable rows based on columnValue matching the pattern(will provide wildcard character to filter) we provided right, my infotable is having string values only which contains special characters. It's working with string which doesn't contain spcl char's but not giving an error or response if it contains special characters.

 

 

abhiramk1-VisitorAuthor
1-Visitor
August 12, 2020

@CarlesColl converting it to JSON and applying javascript filter and converting back to Infotable. Other than this any workarounds are possible. Can you please provide your inputs?

 

-thanks,

Abhiram

CharlesJi16-PearlAnswer
16-Pearl
November 18, 2024

Hi @abhiramk, in this case, you may try to use a double backslash "\\" to escape the special characters.

var filterPattern = "Thingworx Navigate \\(TN\\)";