We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4072a28 commit c1de9b7Copy full SHA for c1de9b7
packages/vsce/src/api/SshMvsApi.ts
@@ -234,10 +234,7 @@ export class SshMvsApi extends SshCommonApi implements MainframeInteraction.IMvs
234
.toUpperCase()
235
.replace(/[^A-Z0-9@#$]/g, "");
236
237
- // Ensure it starts with a valid character (letter or national)
238
- if (memberName.length > 0 && /^[0-9]/.test(memberName)) {
239
- memberName = "$" + memberName;
240
- }
+ memberName = memberName.replace(/[\d]/gy, "");
241
242
// Truncate to 8 characters max
243
memberName = memberName.substring(0, 8);
0 commit comments