
tiagomacul
Mega Sage
Options
- Post History
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
on 12-05-2018 04:57 AM
script: padleft function - Pad a number to two, three, four digits with Javascript
Como preencher um número com zeros à esquerda
Como rellenar con ceros a la izquierda
function padleft(strPad, intSize)
{
var s = String(strPad);
while (s.length < (intSize|| 2)) {s = "0" + s;}
return s;
}
var objQ = new GlideRecord("table");
objQ.query();
while(objQ.next())
{
if (objQ.field.toString().length <= 3)
{
//gs.debug(padleft(objQ.field.toString(), 4));
objQ.field= padleft(objQ.field.toString(), 4);
objQ.update();
}
}
Update set Planejando e executando mudanças no ambiente.
Was useful, please leave your feedback!
- 1,019 Views
Comments

tiagomacul
Mega Sage
- Mark as Read
- Mark as New
- Bookmark
- Permalink
- Report Inappropriate Content
05-25-2022
11:55 AM
var grRec = new GlideRecord("incident");
grRec.setLimit(10);
grRec.query();
while (grRec.next()) {
gs.print('test: ' + grRec.number.getDisplayValue().substring(0, 3));
}