Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, How can I remove <span> and </span> from a field.
Example: Innovative Activities <span>(Optional)</span> , it should display Innovative Activities (Optional)
You could try to use mapsubstring() with a mappingtable like this.
MapTable:
MAPPING Load * [
FromString, ToString
<span>,""
</span>,""
];
You could try to use mapsubstring() with a mappingtable like this.
MapTable:
MAPPING Load * [
FromString, ToString
<span>,""
</span>,""
];
Hi, Thanks it worked,
MapTable:
MAPPING Load * Inline [
FromString, ToString
<span>,""
</span>,""
];