Tagged Questions

11
votes
6answers
19k 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
255 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
36 views

Merging maps by adding/subtracting corresponding values

I have been wondering for a few days now, what could be the least messy approach to my problem. I have a set of 10 enum types e.g. { ZERO, ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE } and I ...
1
vote
2answers
943 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
170 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";