Tagged Questions
4
votes
3answers
471 views
Best way to create SEO friendly URI string
The method should allows only "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-" chars in URI strings.
What is the best way to make nice SEO URI string?
2
votes
5answers
7k views
Putting char into a java string for each N characters
I have a java string, which has a variable length.
I need to put the piece "<br>" into the string, say each 10 characters.
For example this is my string:
`this is my string which I need to ...
1
vote
2answers
314 views
Test if two first chars typed in are alphanumeric - no regex
I have following code that needs something smart to deal with typed in chars and detection:
private final MultiWordSuggestOracle mySuggestions = new MultiWordSuggestOracle();
private final ...
1
vote
1answer
276 views
ANTLR: Lexer rule accepting strictly one letter, and a token of multiple chars, instead of just one (Java)
I've written the below grammar for ANTLR parser and lexer for building trees for logical formulae and had a couple of questions if someone could help:
class AntlrFormulaParser extends Parser;
...
1
vote
3answers
3k views
java newline character insertion
how can i insert a newline character in a java applet program if i am using "label" instead of sys.out.println??
thanks in advance