how to get last two characters from string | Community
Skip to main content
Level 3
September 25, 2022
Solved

how to get last two characters from string

  • September 25, 2022
  • 2 replies
  • 1579 views


In dialog of the componenet im going to author field it is like tag field

json data look as below 

"Icon" : "india:delhi/NR" ,

in htl when i try print  
icon: ${properties.icon}   // its coming full tag like    india:delhi/NR

But i want to print NR only

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Akanksha_Singh

Hi @user96222 

You can use custom scripting:

var string = "StringABC";
var last2Char = string.slice(-2);

console.log(last2Char);

2 replies

Perrin_Ennen
Community Advisor
Community Advisor
September 26, 2022

Maybe something like this - before you write it as JSON set the variable first.

 

const str = '${properties.icon}';

const last2 = str.slice(-2);

September 27, 2022

i think it wont work in htl file right.

I want in htl file

Akanksha_Singh
Akanksha_SinghAccepted solution
Level 2
September 28, 2022

Hi @user96222 

You can use custom scripting:

var string = "StringABC";
var last2Char = string.slice(-2);

console.log(last2Char);