Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 303 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 303 Bytes

findStringSeparator

A program that searches a string parameter for a delimiter(space,comma,colon,semi-colon,period,ampersand) and return the delimiter. Returns -1 if none found.

Usage

#Simply import and run method

from findSeparator import findSep

separator = findSep(sampletext) print(separator)