Tagged Questions

11
votes
6answers
18k views

Anyone know a simple way using java calendar to subtract X days to a date?

Anyone know a simple way using java calendar to subtract X days to a date? Sry not being able to find any function which allows me to directly subtract X days to a date in java, if anyone could point ...
2
votes
2answers
246 views

Java regex predefined character class nested inside character class

I need to use a regular expression that contains all the \b characters except the dot, . Something like [\b&&[^.]] For example, in the following test string: "somewhere deep down in some ...
1
vote
2answers
803 views

Problems with a shunting yard algorithm

I have successfully implemented a shunting yard algorithm in java. The algorithm itself was simple however I am having trouble with the tokenizer. Currently the algorithm works with everything I want ...
-1
votes
2answers
127 views

How to subtract or add two hexadecimal value in java

Is there a way of calculating two hexadecimal value without converting it to int? for example: String sHex = "f7c0"; String bHex = "040000000";