SOLVED
Dynamic regex expression
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
Chaoued
7 - Meteor
‎12-18-2024
03:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello Team, Is there a regex function that replaces the word from \ to the end with blank ? because Q2_2012 changes !!
Input : Rapport F12/Q2_2012 Versus F13/Q2_2012
Output : Rapport F12 Versus F13
Thanks for your help
Solved! Go to Solution.
Labels:
2 REPLIES 2
binuacs
21 - Polaris
‎12-18-2024
03:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Christina_H
14 - Magnetar
‎12-18-2024
03:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This works for this example but may not work for all your data.
REGEX_Replace([Input],"\/\S+","")
