• Instructions to Ask a Question

    For any assistance, please click the "Ask a Question" button and select the Pabbly product for which you require support.

    We offer seven comprehensive applications designed to help you efficiently manage and grow your business:

    Our support team endeavors to respond within 24 business hours (Monday to Friday, 10:00 AM to 6:00 PM IST). We appreciate your understanding and patience.

    🚀 Exclusive Lifetime Offers 🚀

    We invite you to take advantage of our special one-time payment plans, providing lifetime access to select applications:

    • 🔥 Pabbly Connect — Lifetime Access for $249View Offer
    • 🔥 Pabbly Subscription Billing — Lifetime Access for $249View Offer
    • 🔥 Pabbly Chatflow — Lifetime Access for $249View Offer

    Make a one-time investment and enjoy the advantages of robust business management tools for years to come.

How to make a numbered list un-numbered?

Pabblynaut

Member
I get some external data into Pabbly that looks similar to this:
  1. Bob
  2. Karen
  3. Rob
  4. Hans
  5. Robert
  6. Hans
  7. Elsa
  8. Peter
  9. Bjorn
  10. Nina
How can I get Pabbly to instead format it like this:
Bob
Karen
Rob
Hans
Robert
Hans
Elsa
Peter
Bjorn
Nina

Also, the number of lines varies, so one input could have 7 rows, and one could have 23.

Any help is appreciated!
 
P

Pabblymember11

Guest
Hey @Pabblynaut

Currently, there is no dedicated action event available to convert the line item numbering to plain text in every new line.

Though you can try the "Text Formatter by Pabbly: Extract Pattern" action step to extract the desired data with the help of a certain regex which is available online.

2022-11-03_13h07_44.png
 
P

Pabblymember11

Guest
Any solution that works is fine with me, but what kind of regex and where do I put it, I wonder :)
You simply need to pass the regex in the Pattern fields which you can search online and pass the content from where you want to extract the data.
 

Pabblynaut

Member
I don't know anything about Regex, but I managed to make this work inside Google Sheets by using this formula:
Code:
=REGEXREPLACE(REGEXREPLACE(REGEXREPLACE(REGEXREPLACE(REGEXREPLACE(REGEXREPLACE(REGEXREPLACE(REGEXREPLACE(REGEXREPLACE(REGEXREPLACE(F3,"9. ",""),"8. ",""),"7. ",""),"6. ",""),"5. ",""),"4. ",""),"3. ",""),"2. ",""),"1. ",""),"10. ","")

But this only works inside Google Sheet, and not when I paste it into "Pattern" inside the Pabbly text formatter. Any advice on how to use it also there is highly appreciated!
 
P

Pabblymember11

Guest
Hey @Pabblynaut

I am afraid to say that there is no other possibility to convert the numbered row into a non-numbered one with the Text Formatter action step.
 
Hey @Pabblynaut

Currently, there is no dedicated action event available to convert the line item numbering to plain text in every new line.

Though you can try the "Text Formatter by Pabbly: Extract Pattern" action step to extract the desired data with the help of a certain regex which is available online.

View attachment 17469
Can you please check if this regex work ^\d+\.\s

If works please let me know.
 
Top