Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
neerajthakur
Creator III
Creator III

How to remove certain characters from a field?

Hi, How can I remove <span> and </span> from a field.

Example: Innovative Activities <span>(Optional)</span> , it should display Innovative Activities (Optional)

 

Thanks & Regards,
Please Accepts as Solution if it solves your query.
Labels (2)
1 Solution

Accepted Solutions
Vegar
MVP
MVP

You could try to use mapsubstring() with a mappingtable like this.

MapTable:

MAPPING Load * [

FromString, ToString

<span>,""

</span>,""

];

View solution in original post

2 Replies
Vegar
MVP
MVP

You could try to use mapsubstring() with a mappingtable like this.

MapTable:

MAPPING Load * [

FromString, ToString

<span>,""

</span>,""

];

neerajthakur
Creator III
Creator III
Author

Hi, Thanks it worked, 

MapTable:

MAPPING Load * Inline [

FromString, ToString

<span>,""

</span>,""

];

Thanks & Regards,
Please Accepts as Solution if it solves your query.