Denne side indeholder artikler med forskellige perspektiver på Identity & Access Management i private og offentlige organisationer. Artiklerne behandler aktuelle IAM-emner og leveres af producenter, rådgivere og implementeringspartnere.
public class TestAscii { public static void main (String[] args) { System.out.println ("Hej med dig: " + CheckString ("Hej med dig", 96)); System.out.println ("HEJ MED DIG: " + CheckString ("HEJ MED DIG", 96)); }
public static boolean CheckString (String string, int maxValue) { char[] chars = new char[string.length()]; string.getChars(0, chars.length, chars, 0);
for (int i = 0; i < chars.length; i++) { if ((int)chars[i] > maxValue) return false; }
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.