Writing D:/inetpub/webs/vincenzodevivocom/wiki/data/cache/0/0267e4f4e71c25c197ee7a32b37c6f34.i failed
Unable to save cache file. Hint: disk full; file permissions; safe_mode setting.
Writing D:/inetpub/webs/vincenzodevivocom/wiki/data/cache/0/0267e4f4e71c25c197ee7a32b37c6f34.i failed
Unable to save cache file. Hint: disk full; file permissions; safe_mode setting.
Writing D:/inetpub/webs/vincenzodevivocom/wiki/data/cache/0/0267e4f4e71c25c197ee7a32b37c6f34.xhtml failed
Split string when an uppercase letter is found
String str = "stringaDaDividere";
String[] strArray = str.split("(?=\\p{Lu})"); // espressione regolare
/*
ProdurrĂ un array con i seguenti elementi:
- stringa
- Da
- Dividere
*/