Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.41K
~750 People Reached
About Me

Software Developer

Favorite Forums
Favorite Tags
php x 1
Member Avatar for xarz

I don't know how to explain this correctly but just some sample for you guys so that you can really get what Im trying to say. Today is November 28, 2008 3 days from now is December 1,2008 Im looking for a php code, which can give me the exact …

Member Avatar for chetan.akarte
0
154
Member Avatar for abhay_pundir

Hellllo everyone. i want to know that how to open a excel file in c# and how to copy the excel file data to the clipboard. thanx

Member Avatar for serkan sendur
0
160
Member Avatar for amorphis88

I need an email validator in C#... i never written a letter C#... i found this: public static bool isEmail(string inputEmail) { inputEmail = NulltoString(inputEmail); string strRegex = @"^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}" + @"\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\" + @".)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$"; Regex re = new Regex(strRegex); if (re.IsMatch(inputEmail)) return (true); else return (false); } but do i need …

Member Avatar for amorphis88
0
96
Member Avatar for MoikleC

Can anyone offer C# code to read Excel chart data (e.g. Type, Title...) from an existing spreadsheet with charts contained? Thanks :-)

0
53
Member Avatar for knittingguy

Hi all, I am having a little problem with regular expression. I have a change password application and I want to make sure the password contains at least one numeric character. The regular expression that I am using is, [a-zA-Z]+[0-9]+|[0-9]+[a-zA-Z]+. If I put in "testing", it would return false, which …

0
57
Member Avatar for campkev

ok, new to regular expressions so can someone please explain something to me. In trying to create an expression to check if an entry is between 1 and 15, I first came up with: [1-9]|1[0-5] this didn't work however 1[0-5]?|[2-9] did work. I understand why the second one works, but …

Member Avatar for campkev
0
230