- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2023 10:06 AM
i trying to remove the “\n” character along with empty spaces from string thru mapper expression, but it’s not working.
- input value JsonStr := [\n “AC”\n]
expected output := [“AC”] - input value JsonStr := [\n “AC”,\n “BD”,\n “DE” \n]
expected output := [“AC”,“BD”,“DE”]
i tried with JsonStr.toString().replaceAll(/\n/,“”). but it’s not working
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2023 05:27 AM
You can use this expression: $JsonStr != null && $JsonStr != “” ? $JsonStr .replaceAll(“\n”,“”) : $JsonStr
Explanation: This will first check if the JsonStr is null or empty, if it’s not then it’ll do the replacing else it’ll just put input jsonStr as output. In your case where JsonStr is null it’ll show output null
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2023 10:17 AM
i changed expression as below, it’s working
JsonStr.toString().replaceAll(‘\n’,‘’).replaceAll(’ ‘,’')
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2023 10:33 AM
expression failing when input string contains blanks or null values using this expression “JsonStr.toString().replaceAll(‘\n’,‘’).replaceAll(’ ‘,’')”
any suggestions how to resolve this when we receive blank/null values?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2023 01:08 AM
Can you share example of input data(with blank/ null values)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2023 05:02 AM
- input value JsonStr := [\n “AC”\n]
expected output := [“AC”] - input value JsonStr := [\n “AC”,\n “BD”,\n “DE” \n]
expected output := [“AC”,“BD”,“DE”] - input value JsonStr := null
expected output := null
