Hi guys,
I'm writing a Robot and wonder what is the command to press Enter (the key on the very right side, not the Enter above the shift).
The reason for this is because I have an application that the Enter (or Return) is only by the very right enter key.
Hi all,
I have a text data in which I need to extract the taxes (in the data below it's JC = 5.20, FS = 17.60). Those taxes change from state to state so it's not always JC, FS etc; and sometimes they don't even exists (system error) or there's only one tax (system error)
My task is to extract those taxes into a map<String,Double). One approach I thought of is to use matcher and patter and use in the compile: \s\w\w\s+\d+\.\d\d
I was wondering if there's a better approach?
Thanks!
I'm trying to write a pattern where a line should begin with a digit AND end with a digit. The problem that I face is that both conditions should occur together (starts with and ends with).
Can any one point how this should work? for code simplicity I need to write one pattern (not to use startsWith or endsWith)
Can anyone point to an e-commerce open source? Specifically, I'm looking to build a shopping cart for a restaurant (a coffee shop) and wonder if anyone has any idea of where to start.
I'm a complete newbie in the field of iPhone development. I wonder if there's any way to develop an iPhone app using java (if so, which one and is it recommended to do so)?
Also, can anyone point at a site to start developing an app (either with obj-C or java)
My goal is to build an app that user can login using credentials and query a remote db.
We've been using mysql for quite some time (2yr) and learned that the size of the db tends to grow over time. Currently, if we dump my db we get a 3.2GB file. I'm aware that mySql can hold up to 4GB of data (I guess only on 32bit os).
If this continues, we may find that the db doesn't work properly anymore. What are the options we have? Can anyone advise/recommend what should we do in order to have the db working properly in the long run without the fear of running out of space? We store only TEXT! no photos/videos or any stream, text only!