Hi all,
Using a custom form with a dedicated work table. RegEx is working great to validate anything numeric but I’m stuck when it comes to Hebrew characters and a handful of special characters (such as ’ (single quote), -(hyphen), space, etc.).
In a nutshell, I’d like to add a column that’ll validate input of a text field. Column should return “false” if contains anything other than Hebrew and these special characters.
I found this great idea on StackOverflow which is actually using JavaScript to validate the RegEx.
function is_heb(Field) {
// First choose the required validation
HebrewChars = new RegExp("^[\u0590-\u05FF]+$");
AlphaNumericChars = new RegExp("^[a-zA-Z0-9\-]+$");
EnglishChars = new RegExp("^[a-zA-Z\-]+$");
LegalChars = new RegExp("^[a-zA-Z\-\u0590-\u05FF ]+$"); //Note that this one allows space
// Then use it
if (!LegalChars.test(Field)) {
return false;
} else
return true;
}
Here it is, “adapted” for Glide and for my specific use case:
{
HebrewChars = new RegExp("^[\u0590-\u05FF]+$");
LegalChars = new RegExp("^[a-zA-Z\-\u0590-\u05FF ]+$"); //Note that this one allows space
if (!LegalChars.test(p1)) {
return false;
} else
return true;
}
I was sure it worked, but then…it didn’t
I fear I might have “touched” something to mess it up, but cannot find it. Of course I tried to build it again from scratch but still no luck.
Any ideas?
Thanks
After looking into this further your javascript works fine outside of glide and in my example it identified a period “.” as non hebrew which made me think it was 100% working. I attempted to use it even further and any information placed in the field in any other language with out a period “.” is recognized as true as well.
I do not think that the javascript portion of Glide has matured enough to work in this manner. I will keep working on it but your code in either format listed above works the way it should outside of Glide.
Thanks for assisting.
I actually think the code part inside Java is working rather well.
Here’s another code I picked up. this time to check integrity of an Israeli ID number. I have not played with it extensively, but on the surface it does seem to function properly. Happy to hear your input.
This looks great but please help be “decode” this code. Does it just check if p1 doesn’t have English characters?
The idea to have a “clean” input, i.e. just Hebrew characters and select special characters.
Hola @gvalero,
Gracias!
This is indeed working for Hebrew, but it doesn’t allow the special characters I mentioned (apart from “space” which is working):
– מקף
’ גרש