-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unicode is not supported in ResourceGroupOperations #1250
Comments
👍 Thanks for the feedback. |
ppl working with resource group name in East-Asia and West-Euro sometimes:) |
@jianghaolu is this issue still relevant? |
* Update project.json * Update AssemblyInfo.cs * Update project.json * Update project.json * upgraded to ADAL 2.27 (Azure#1222) * Fixed ClientRuntime.sln
@ChenTanyi could you help take a look to see whether this issue is still existing? |
I did not find ResourceGroupOperations, maybe it had been changed. |
ResourceGroupOperationsImpl
if (Pattern.matches("^[-\w._]+$", resourceGroupName) == false) {
throw new IllegalArgumentException("resourceGroupName");
}
'w' indicates only ascii codes and you may have to involve the code pages of non-ascii in regex if you'd like to search them.
The code example involves the most of Unicode characters:
boolean valid = Pattern.matches("^[\u0080-\u9FFF_\uFB00-\uFFFDh\w._]+$", "表ポあA中Œé鷗停B逍Üßàùªñ");
The text was updated successfully, but these errors were encountered: