- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2024 01:52 AM
HI All,
I want to extract numbers from the in given string except KB please give me the expression in dynamic form
KB0014953.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2024 01:55 AM
Hello @Tippireddy Venk
Use the below script :-
var numb = "KB0014953";
var res = numb.substring(2);
gs.info(res);
Please mark my solution as Accept, if you find it helpful.
Regards,
Samaksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2024 01:55 AM
Hello @Tippireddy Venk
Use the below script :-
var numb = "KB0014953";
var res = numb.substring(2);
gs.info(res);
Please mark my solution as Accept, if you find it helpful.
Regards,
Samaksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2024 01:59 AM
i want to store the data with out KB