Does it have to be a RegEx? I have a CC table that does changes all upper case to lower case. I have another that only changes the first letter of the field.
Ron Moe
--
For that matter, you could have created (activated) the ICU transliterator “Any to Lower” if you’re going to run it in a process
From: flex...@googlegroups.com [mailto:flex...@googlegroups.com] On Behalf Of Jonathan
Sent: Tuesday, November 19, 2013 11:24 AM
To: flex...@googlegroups.com
--
You are subscribed to the publicly accessible group "FLEx list".
Only members can post but anyone can view messages on the website.
---
You received this message because you are subscribed to the Google Groups "FLEx list" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flex-list+...@googlegroups.com.
To post to this group, send email to flex...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flex-list/1dda2d1b-079b-43d7-8431-bf1246bcbb15%40googlegroups.com.
Late to the show…
Here’s another, less verbose way:
pass(Unicode)
UniClass [uc] = (latin_capital_letter_a .. latin_capital_letter_z)
UniClass [lc] = (latin_small_letter_a .. latin_small_letter_z)
[uc] > [lc]
Bob
From: flex...@googlegroups.com [mailto:flex...@googlegroups.com] On Behalf Of Jonathan
Sent: Tuesday, November 19, 2013 11:24 AM
To: flex...@googlegroups.com
--
You are subscribed to the publicly accessible group "FLEx list".
Only members can post but anyone can view messages on the website.
---
You received this message because you are subscribed to the Google Groups "FLEx list" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flex-list+...@googlegroups.com.
To post to this group, send email to flex...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flex-list/1dda2d1b-079b-43d7-8431-bf1246bcbb15%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flex-list/00c501cee5f8%2442b6f620%24c824e260%24%40sall.com.
I don’t have FLex installed to give the exact details, but the rough steps are:
In bulk edit view, go to the Process tab
Click the button to add a new process
In the resulting dialog, see if you can add an ‘ICU Transliterator’ (you might need to click the “More” button)
In the configuration (3-4 tab) dialog for ICU Transliterators, click the ‘Setup’ tab
In the list of transliterators, click on ‘Any to Lower’.
Click ‘Apply’ or ‘OK’,
click OK at accept the name (and to make it permanent – I think they have to be permanent to be used in FLex)
and once you get back to FLex, choose that ‘converter’ to do the process for whichever field you want all the upper case characters reduced to lower case….
To view this discussion on the web visit https://groups.google.com/d/msgid/flex-list/E2E685C5-7EE5-4C2D-AA7B-B2AEAC0F9E58%40sil.org.
To view this discussion on the web visit https://groups.google.com/d/msgid/flex-list/b71aaad7-5ee1-408b-a8ea-7ca51b512d4a%40googlegroups.com.
This may be a bit late, but here are my CC tables (attached). The table FwUpperLowerAll.cc changes all upper case letters to lower case. The other two only change the initial letter and were a bit more tricky to write. All three have been tested and work correctly. The ones that change the initial letter are useful if you want to capitalize the first letter of a definition (or change it back).
Ron Moe
--
You are subscribed to the publicly accessible group "FLEx list".
Only members can post but anyone can view messages on the website.
---
You received this message because you are subscribed to the Google Groups
"FLEx list" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to flex-list+...@googlegroups.com.
To post to this group, send email to flex...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flex-list/2cf48d5d-afda-4bbc-9a6d-080f36c03d61%40googlegroups.com.