Skip to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Substitute any character...

Featured Replies

with any character & " "

Something like this:

Substitute ( textField, "*"; "*" & " ")

Except of course this doesn't work.

Seems like my brain isn't working too well on that...

Any suggestions for the easiest way to do it?

Thanks,

Michael

Have a look at the Replace function.

This insert a space between each char of a 6 chars field, w/o a custom function.

Replace ( Replace ( Replace ( Replace ( Replace ( text ; 2 ; 0 ; " " ) ; 4 ; 0 ; " " ) ; 6 ; 0 ; " " ) ; 8 ; 0 ; " " ) ; 10 ; 0 ; " " )

P.S.:P More "Replace" for more chars :

Hi Fabrice

( this is only for us ;-) )

Space ( text )

Let(

$count = $count + 2 ;

Case(

$count ≤ Length ( text ) ; Space ( Replace ( text ; $count ; 0 ; " " ) ) ;

Let ( $count = "" ; text )

)

)

Since you have the developer version, you can easily use a custom function for this:

InsertSpaces ( text )

Let (

len = Length ( text )

;

Case (

len > 1 ;

InsertSpaces ( Left ( text ; len - 1 ) ) & " " & Right ( text ; 1 ) ;

text

)

)

Create an account or sign in to comment

Important Information

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

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.