đź‘‹ Use this site to provide feedback and ideas for all Nintex Products. See our post on Nintex Community "Welcome to Nintex Ideas" for more details on Nintex Ideas, how an idea is handled by our product teams and more!
If you have questions about Nintex Ideas, please contact ideas@nintex.com
If you require support, please visit Nintex Customer Central
If you have a sales inquiry, please contact sales@nintex.com
Hi Juyoung, are you able to help me understand a couple of user scenarios for this function? We are planning to expand on the collection operations so you rinput will be very helpful. Thanks
Hi,
you can use the "Replace" function with some Regx as following example:
replace([Form].[rsREGX],"^(?:[^,]+,){"+convertToString([Form].[Row]-1)+"}([^,]+).*", "$1")
this code is using a regular expression to extract a specific portion - in your case the Nth-item of a string/Collection based on the provided pattern and replace the entire string with that extracted portion, so basically it extract and Get the Nth item from collection.
Hope that help,
Thanks,Majid