You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I have objects names like that "" like "EOS001 Customer List".
when using the variable snippet it will successfully trim the prefix but obviously not the AppCode.
unfortunately, the AL compiler will throw this error:
' 001 .' is not valid value in this context.AL(AL0519)
using this regex, it will trim the digits or dots at the beginning of a string, and it will create a compliant variable name
/^(\d|.)+/gm
The text was updated successfully, but these errors were encountered:
Hi,
I have objects names like that "" like "EOS001 Customer List".
when using the variable snippet it will successfully trim the prefix but obviously not the AppCode.
unfortunately, the AL compiler will throw this error:
' 001 .' is not valid value in this context.AL(AL0519)
using this regex, it will trim the digits or dots at the beginning of a string, and it will create a compliant variable name
/^(\d|.)+/gm
The text was updated successfully, but these errors were encountered: