on ā2015 Dec 14 12:00 PM
Hi All,
I am working on one transaction and output is "Deepali,B1993,January".But,I want only "B1993" as output.
How can I get it by using functions in expression editor?
Please help me in this.
Request clarification before answering.
Hi,
if output format is always same then string function can be used to get the desired result.
ccombination of stringindexof, stringpart and stringlength can also give the desired result. Let me know if u need sample example
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Transaction.Sample : Deepali,B1993,January
stringpart(stringpart(Transaction.Sample,stringindexof(Transaction.Sample,",")+1,stringlength(Transaction.Sample)-stringindexof(Transaction.Sample,",")),1,stringindexof(stringpart(Transaction.Sample,stringindexof(Transaction.Sample,",")+1,stringlength(Transaction.Sample)-stringindexof(Transaction.Sample,",")),",")-1)
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.