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 5447 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I suppose something like this might work

but my chr13 is wrong...

I trying to remove those phantom returns in a text field

Substitute ( g_pass_verify ; chr(13) ; "" )

Posted (edited)

Why not use the actual character for this?

I just capture one out of a text editor, and use that in the searchString.

Lee

Edited by Guest
misread the question
Posted

Depending on original source of text it could be a line feed Chr ( 10 )

e.g. Substitute ( text ; [ Chr ( 10 ) ; "" ] ; [ Chr ( 13 ) ; "" ] )

You might try look at the actual content using the following cf which shows each characters asc code in list form:

// codeList ( text )

Let ( [ byte = Left ( text ; 1 ) ;

result = Code ( byte ) & "¶" ;

LR = Length( result ) ;

N = Length ( text ) ];

result &

Case( N > 1 ; codeList ( Right ( text ; N -1 ) ) )

)

  • 2 weeks later...
Posted

Thanks...

This topic is 5447 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.