exhtml
6/27/2017 - 12:01 PM

regular expressions example -more info and examples: https://regex101.com/ (Quick reference > Common tokens)

regular expressions example -more info and examples: https://regex101.com/ (Quick reference > Common tokens)

//regular expression to remove 'xxx..' strings
var regex = /^(X)*$/g;
if( !regex.test(data.Contenedores[i]) ) { 
  //do something
}