Forum Discussion

Naveenks's avatar
Naveenks
Contributor
5 years ago
Solved

Capturing dynamic string character

Hi,   I have to capture "There are 138 records in table" and then i have to extract only 138 using java script. Please help me in creating the script. Regards, Naveen....
  • Bobik's avatar
    5 years ago
    var a = "There are 138 records in table"
    
    function Test()
    {
      Log.Message(getCount(a));
    }
    
    function getCount(str)
    {
      str = str.replace("There are ","")
      str = str.replace("There is ","")
      str = str.replace(" records in table","")
      str = str.replace(" record in table","")
      return VarToInt(str)
    }