Jump 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.

Featured Replies

  • Author

This is one simple text parser which I use as a custom function. So, if you have to take one part of the text, set the parameters in Ripper and go on.

Let (

[

$Start = Position(Field; Parameter_From; ""; Occurrence1);

$End = Position(Field; Parameter_To; ""; Occurrence2)

];

Middle(Field; $Start+Start_Correction; $End-$Start-Length_Correction)

)

This is one simple text parser which I use as a custom function. So, if you have to take one part of the text, set the parameters in Ripper and go on.

Let (

[

$Start = Position(Field; Parameter_From; ""; Occurrence1);

$End = Position(Field; Parameter_To; ""; Occurrence2)

];

Middle(Field; $Start+Start_Correction; $End-$Start-Length_Correction)

)

  • Author

This is one simple text parser which I use as a custom function. So, if you have to take one part of the text, set the parameters in Ripper and go on.

Let (

[

$Start = Position(Field; Parameter_From; ""; Occurrence1);

$End = Position(Field; Parameter_To; ""; Occurrence2)

];

Middle(Field; $Start+Start_Correction; $End-$Start-Length_Correction)

)

  • 1 month later...
  • Newbies

Can this function be used to split a number too?

I need to split a fields contents (100,00) so that newfield 1 holds 100 and newfield 2 holds the 00. So I would use comma as seperator.

Could you set up an exaple here how to do that?

  • Author

1.0 To get a hundred adjust Ripper like this:

Let (

[

// ** from first round fence

$Start = Position(Field; "("; ""; 1);

// ** to the first comma separator

$End = Position(Field; ","; ""; 1)

];

/* Start correction plus 1 (otherwise you'll capture left round fence "(" in your result

) and with same reason end correction is -1 (to avoid comma sepratator in end result) */

Middle(Field; $Start+1; $End-$Start-1)

)

2.0 To get zeros:

Let (

[

$Start = Position(Field; ","; ""; 1);

$End = Position(Field; ")"; ""; 1)

];

Middle(Field; $Start+1; $End-$Start-1)

)

Create an account or sign in to comment

Important Information

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

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.