Editing JSON Parsed objects

Hi Makers!

Does anyone have any idea how i can edit the JSON outputs? I would like to have the objects cleaned without the numbers and symbols that comes before the actual result. For example like 0_New_Customer, i would like to remove the 0_ from New_Customer.

How does your “Parse JSON” module field look like?

You could try using the built-in function:

  • replace
    replace(text; search string; replacement string)

This function may have also been covered in the Make Academy tutorials — refer to the Make Academy Course Overview to learn more.

Here’s an example of how you can use this function:

{{ replace(1.text; pattern; emptystring) }}

With this pattern:
(?<=")\d+_

Proof https://regex101.com/r/jTG3iO/1

e.g.:

Screenshot 2025-09-25 165151

Hope this helps! Let me know if there are any further questions or issues.

@samliew

1 Like