Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 5612 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted (edited)

Hi. I was wondering how to separate a word into a combination of letters.

For example, I have the word "ORANGE" in one text field and I want to automatically separate it into a combination of three letters... like "ORA" (in one field); "RAN" (in another field); "ANG" (in another field) and "NGE" (in another field)

ORA-RAN-ANG-NGE (ORANGE)

Any help is appreciated.

Edited by Guest
Posted

Where are you going with this? That is, why are you doing this?

Check out the Text functions Left ( ), Middle ( ) and Right ( ).

Posted

Depending on what you're trying to accomplish, how about a calculated repeating field =

Let([

thisRep= Get(CalculationRepetitionNumber);

text = table::Field;

three = Middle(text;thisRep;3)

result = If(Length(three) = 3; three)

];

result

)

Posted

what Im trying to do is to separate a word into many 3-letters-combination as the text lenght allows.

TextField1= ORANGE

Field2= ORA

Field3= RAN

Field4= ANG

Field5= NGE

Field5= empty (there is no more 3-letter combination)

Next, I´m going to create a search script that will search for any 3-letter-combination match.

SearchField= *"ORA"*

SearchField= *"RAN"* and so..

This topic is 5612 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.