Converting to Upper/Lower case
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
26-02-20 10:11 AM
Hi all,
Does anyone know a simple way to convert a text data item so that every letter after a space is a capital letter and the rest is lowercase? The data item could be made up of 1/2/3/4 etc words and could either already be in this format or could be all upper or all lower case.
Thanks.
------------------------------
Sophie Katherine Smith
HR Systems, Data and Quality Assurance Manager
Arup
Europe/London
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
26-02-20 12:20 PM
- Pass the Text data item into the action 'Split Text' from the object 'Utility - Strings'.
- Input for Text to Split: [Text Data Item]
- Input for Split Char: " "
- Input for Collection Field Name: "Item Value"
- Output for Split Values: collection named [Split Values]
- Next do a loop using Loop Stages on the collection [Split Values]
- Loop Start
- Calc stage with expression: Upper(Left(Trim([Split Values.Item Value]),1)) & Right([Split Values.Item Value],Len([Split Values.Item Value])-1)
- Above Calc stage should store in [Split Values.Item Value]
- Loop End
- Then pass the collection Split Values into the action 'Join Text' in the object 'Utility - Strings'.
- Input for Values: [Split Values]
- Input for Join Character: " "
- Input for Trim Values: False
- Output for Joined Text: [Text Data Item]
------------------------------
Dave Morris
3Ci @ Southern Company
Atlanta, GA
------------------------------
Dave Morris, 3Ci at Southern Company
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
26-02-20 01:45 PM
------------------------------
Sophie Katherine Smith
HR Systems, Data and Quality Assurance Manager
Arup
Europe/London
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
26-02-20 05:35 PM
If your address text contains numbers, (1234 LIBERTY STREET NW for example) you may have to add some additional logic to test if the text contains numbers in order to avoid a system exception because if you try to convert text using the ToUpper() or ToLower() functions for data items containing numbers, Blue Prism will trigger a casting exception.
Dave's suggestion looks good, just be aware of additional handling logic that may have to be built around that process to catch special character situations when you are formatting the text.
Hope that helps.
------------------------------
Jorge Barajas
Senior Product Consultant
Blue Prism, North America
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
27-02-20 08:24 AM
------------------------------
Sophie Katherine Smith
HR Systems, Data and Quality Assurance Manager
Arup
Europe/London
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
27-02-20 02:29 PM
Result = System.Text.RegularExpressions.Regex.Replace(<your_string_here>, "(?<= )\w", Function(m) m.Value.ToUpper())
I'd personally go with Dave's solution as I try to avoid code stages for one-off pieces and there's not much reuse value with this solution.
------------------------------
Nicholas Zejdlik
RPA Developer
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
25-02-25 02:22 PM
is this still the only possible way? Is there no Function or object for that after five years. Thats a very complicated way for such an easy task.
Thank you for sharing it 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
28-02-25 10:02 AM
Hi SK,
Additionally, I'd strongly consider not doing the upper/lower case conversion in your process but make a separate dedicated process (or object) for it. This way you'll be able to re-use the logic in other processes too without having to duplicate it. Anyway, my two cents.
Happy coding!
------------------
Paul
Sweden
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
28-02-25 05:13 PM
Good morning, all.
So... In the spirit of Rube Goldberg, and not even being my most esoteric solution this week...
MS Excel has a function called "Proper" which does exactly what you are asking, though it does not address the state abbreviation case that @jorge.barajas raise.
Set Cell 'A1' with '=PROPER(B1)'
Your process then writes to cell 'B1' and copies the value from 'A1'
Continue until complete.
Just a thought. Not necessarily a good thought, but a thought nonetheless.
Enjoy,
Red
