Todo.xls

 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Cartoons for Geeks Todo.xls
# 1  
Old 11-02-2010
Todo.xls

2010-11-02T19:59:05+01:00
Image




Tweet
Image Image Image Image
Image

Source...
 
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Merging Multiple XLS into Different tabs in xls/ xlsx

HI, I have multiple files per dept in folder for eg : In a folder File1_Dept100.xls File2_Dept100.xls File3_Dept100.xls File1_Dept200.xls File2_Dept200.xls File3_Dept200.xls Output should be : Dept100.xls which has File1, File2, File3 in different tabs Dept200.xls which has... (1 Reply)
Discussion started by: venkyzrocks
1 Replies

2. Shell Programming and Scripting

converting xls file to txt file and xls to csv

I need to convert an excel file into a text file and an excel file into a CSV file.. any code to do that is appreciated thanks (6 Replies)
Discussion started by: bandar007
6 Replies

3. Shell Programming and Scripting

How to Merge Two .xls files side by side into a single .xls

Hi all, please help me out in below requirement. I have two .xls files say abc.xls and bbc.xls , i want to merge these two files into a single file ..say xyz.xls side by side Ex: abc.xls bbc.xls Eno Ename Eno Ename 101 hello ... (2 Replies)
Discussion started by: jagadish99
2 Replies

4. Shell Programming and Scripting

How to Merge Two .xls files side by side into a single .xls

Hi all, please help me out in below requirement. I have two .xls files say abc.xls and bbc.xls , i want to merge these two files into a single file ..say xyz.xls side by side Ex: abc.xls Eno Ename 101 hello 102 hero 103 india bbc.xls Eno Ename 201 delhi 202 Hyd 203... (0 Replies)
Discussion started by: jagadish99
0 Replies

5. UNIX for Dummies Questions & Answers

How to create a simple todo file?

Hia all, I am trying to create a simple script, that will keep me a todo file/log. The idea is to have to scritps, one to enter a new todo file, one to delete (it can be one with different inputs, but this is not the point) e.g. > newEntry Call_home - will add a new line to the log like... (4 Replies)
Discussion started by: sierra_aar
4 Replies
Login or Register to Ask a Question
std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >(3cxx)		 std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >(3cxx)

NAME
std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits > - SYNOPSIS
Public Types typedef std::ptrdiff_t difference_type typedef std::forward_iterator_tag iterator_category typedef const value_type * pointer typedef const value_type & reference typedef basic_regex< _Ch_type, _Rx_traits > regex_type" typedef sub_match< _Bi_iter > value_type Public Member Functions regex_token_iterator () regex_token_iterator (_Bi_iter __a, _Bi_iter __b, const regex_type &__re, int __submatch=0, regex_constants::match_flag_type __m=regex_constants::match_default) regex_token_iterator (_Bi_iter __a, _Bi_iter __b, const regex_type &__re, const std::vector< int > &__submatches, regex_constants::match_flag_type __m=regex_constants::match_default) template<std::size_t _Nm> regex_token_iterator (_Bi_iter __a, _Bi_iter __b, const regex_type &__re, const int(&__submatches)[_Nm], regex_constants::match_flag_type __m=regex_constants::match_default) regex_token_iterator (const regex_token_iterator &__rhs) bool operator!= (const regex_token_iterator &__rhs) const value_type & operator* () regex_token_iterator & operator++ () regex_token_iterator operator++ (int) const value_type * operator-> () regex_token_iterator & operator= (const regex_token_iterator &__rhs) bool operator== (const regex_token_iterator &__rhs) Detailed Description template<typename _Bi_iter, typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>>class std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits > Iterates over submatches in a range (or splits a text string). The purpose of this iterator is to enumerate all, or all specified, matches of a regular expression within a text range. The dereferenced value of an iterator of this class is a std::sub_match object. Definition at line 2353 of file regex.h. Constructor &; Destructor Documentation template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_token_iterator () Default constructs a regex_token_iterator. Todo Implement this function. A default-constructed regex_token_iterator is a singular iterator that will compare equal to the one-past-the-end value for any iterator of the same type. template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_token_iterator (_Bi_iter__a, _Bi_iter__b, const regex_type &__re, int__submatch = 0, regex_constants::match_flag_type__m = regex_constants::match_default) Constructs a regex_token_iterator... Parameters: a [IN] The start of the text to search. b [IN] One-past-the-end of the text to search. re [IN] The regular expression to search for. submatch [IN] Which submatch to return. There are some special values for this parameter: o -1 each enumerated subexpression does NOT match the regular expression (aka field splitting) o 0 the entire string matching the subexpression is returned for each match within the text. o >0 enumerates only the indicated subexpression from a match within the text. m [IN] Policy flags for match rules. Todo Implement this function. Needs documentation! See http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_token_iterator (_Bi_iter__a, _Bi_iter__b, const regex_type &__re, const std::vector< int > &__submatches, regex_constants::match_flag_type__m = regex_constants::match_default) Constructs a regex_token_iterator... Parameters: a [IN] The start of the text to search. b [IN] One-past-the-end of the text to search. re [IN] The regular expression to search for. submatches [IN] A list of subexpressions to return for each regular expression match within the text. m [IN] Policy flags for match rules. Todo Implement this function. Needs documentation! See http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> template<std::size_t _Nm> std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_token_iterator (_Bi_iter__a, _Bi_iter__b, const regex_type &__re, const int(&)__submatches[_Nm], regex_constants::match_flag_type__m = regex_constants::match_default) Constructs a regex_token_iterator... Parameters: a [IN] The start of the text to search. b [IN] One-past-the-end of the text to search. re [IN] The regular expression to search for. submatches [IN] A list of subexpressions to return for each regular expression match within the text. m [IN] Policy flags for match rules. Todo Implement this function. Needs documentation! See http://gcc.gnu.org/onlinedocs/libstdc++/manual/documentation_style.html template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_token_iterator (const regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits > &__rhs) Copy constructs a regex_token_iterator. Parameters: rhs [IN] A regex_token_iterator to copy. Todo Implement this function. Member Function Documentation template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> bool std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator!= (const regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits > &__rhs) Compares a regex_token_iterator to another for inequality. Todo Implement this function. template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> const value_type& std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator* () Dereferences a regex_token_iterator. Todo Implement this function. template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> regex_token_iterator& std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator++ () Increments a regex_token_iterator. Todo Implement this function. template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> regex_token_iterator std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator++ (int) Postincrements a regex_token_iterator. Todo Implement this function. template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> const value_type* std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator-> () Selects a regex_token_iterator member. Todo Implement this function. template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> regex_token_iterator& std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator= (const regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits > &__rhs) Assigns a regex_token_iterator to another. Parameters: rhs [IN] A regex_token_iterator to copy. Todo Implement this function. template<typename _Bi_iter , typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type, typename _Rx_traits = regex_traits<_Ch_type>> bool std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator== (const regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits > &__rhs) Compares a regex_token_iterator to another for equality. Todo Implement this function. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012std::regex_token_iterator< _Bi_iter, _Ch_type, _Rx_traits >(3cxx)