SOLVED
Parse upper case letters
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
Anon1234
6 - Meteoroid
‎11-03-2023
03:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I want to create a column wherein all the uppercase letters will be pulled. Example:
AB-01234 to AB
FGV1234566 to FGV
FYU02022 to FYU
LBA123456 to LBA
GRT5678910 to GRT
Solved! Go to Solution.
Labels:
- Labels:
- Transformation
3 REPLIES 3
17 - Castor
‎11-03-2023
03:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Anon1234 you can use regex to parse upper case letter only. Specifically \u will find all upper case characters in a string. I've mocked up a example.
16 - Nebula
‎11-03-2023
03:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
hi @Anon1234
Simple Regex can help it. Please refer to the attached WF.
Regex expression "\u" matches all upper case letter, which is equivalent to [A-Z].
‎11-03-2023
03:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This works! Thank you😊
