Greetings,
I have a need to split the following string from this:
1234_5678.901.A_1.jpg
to this:
1234_5678.901.A
If I use the following split function, it splits at the first '_', where I need it to split at the 2nd '_'
split(outputs('Get_File_Name'), '_')[0]
Is there a way to reference the second underscore in the split function?
Thank you; in advance!
Update - I resolved this by removing the second '_' in the generated filename and replacing it with a '-'. I then used the following split function:
split(outputs('Get_File_Name'), '-')[0]
This works for my needs.
Solved! Go to Solution.
Hi @tianaranjo,
You could also take a try with expression to achieve your needs and don't need to replace '_' with '-':
split(outputs('Get_File_Name'), '_1.')[0]
Best regards,
Alice
Hi @tianaranjo,
You could also take a try with expression to achieve your needs and don't need to replace '_' with '-':
split(outputs('Get_File_Name'), '_1.')[0]
Best regards,
Alice
Hello, @tianaranjo!
Have you had an opportunity to apply @v-yuazh-msft‘s recommendation to adapt your Flow? If yes, and you find that solution to be satisfactory, please go ahead and click “Accept as Solution” so that this thread will be marked for other users to easily identify!
Thank you for being an active member of the Flow Community!
-Gabriel
Flow Community Manager
i dont quite understand what the [0] does on the expression - could someone please explain
split(outputs('Get_File_Name'), '_1.')[0]
thanks
Stephen
Also, how did youremove the second '_' in the generated filename and replace it with a '-' ? could you explain that please
many thanks
Stephen
@StephenM I'm not an expert so bear with me and if I get this incorrect, hopefully the others on this chain will correct me. The '0' is referring to an index or location in the string. Hopefully these links will help:
https://www.w3schools.com/jsref/jsref_split.asp
Optional. An integer that specifies the number of splits, items after the split limit will not be included in the array
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split
@StephenM - within PowerApps, I was using Concatenate to join the fields with the '_'. I simply changed that to '-'.
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
85 | |
58 | |
51 | |
42 | |
38 |
User | Count |
---|---|
89 | |
75 | |
74 | |
62 | |
44 |