Skip to content

Instantly share code, notes, and snippets.

@khannedy
Created November 3, 2014 17:54
Show Gist options
  • Save khannedy/ebb64aa98806597ba3eb to your computer and use it in GitHub Desktop.
Save khannedy/ebb64aa98806597ba3eb to your computer and use it in GitHub Desktop.
/*
* Copyright c 2014 wildcard Eko Khannedy and/or its affiliates All rights reserved
* EKO KHANNEDY PROPRIETARY/CONFIDENTIAL Use is subject to license terms
*/
package com.example.rule
import com.example.rule.Wildcard.stringToWildcard
/**
* @author Eko Khannedy
* @since 10/27/14
*/
object WildCardApp extends App {
"eko" wildcard "?k*"
"iko" wildcard "?k*"
"eka" wildcard "?k*"
"ika" wildcard "?k*"
"usu" wildcard "?k*"
"ekoeko" wildcard "?k*"
"eekoeko" wildcard "?k*"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment