Any way to split all characters (i.e. with no separator)?

So, I understand how to use the following:

substrings separated by " " of "a b c d e"

What I’d like to do is get the exact same results from the following:

substrings separated by "" of "abcde"

Is there a way to do this in BigFix Relevance?

Yes, using the characters inspector:

(it & ". Item") of characters of "ABCDE"
1 Like

A tip:

Use the properties inspector in the Fixlet Debugger to get all of the properties / inspectors you can use.

You can even filter the list of properties to just contain those that work on strings and substrings:

(it as string) whose(it contains "string>: " AND it ends with "string") of properties

And you can alphabetize the results like this:

unique values of (it as string) whose(it contains "string>: " AND it ends with "string") of properties
1 Like