SOLVED
Delete a specific part of a string
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
TarekIMEX
6 - Meteoroid
‎03-26-2024
07:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello everyone, I want to delete a specific part of a string.
I have a column 'Comment'. Within this column I have texts values of this type :
<p><span style="color: #333333; background-color: #ffffff;">Units reduced due to space surrender</span></p>
I want to delete the "HTML part". To be more clear, I want to delete all the stuff between "<*>".
Thank you all.
Solved! Go to Solution.
Labels:
4 REPLIES 4
usmanbashir
11 - Bolide
‎03-26-2024
07:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
binuacs
21 - Polaris
‎03-26-2024
07:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
‎03-26-2024
07:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
It worked ! Thank you.
Can you explain to me how REGEX_Replace works please ?
I'm not sure to well understand <[^>]*
Thank you
binuacs
21 - Polaris
‎03-26-2024
12:13 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This regular expression will match any text within < and > brackets, including the brackets themselves, and replace it with an empty string. Here's what each part of the regex pattern does:
<: Matches the opening angle bracket.
[^>]*: Matches any character that is not a closing angle bracket >, zero or more times.
>: Matches the closing angle bracket.
After applying this regex, all text within the <> tags will be removed from the text.
